2013-11-21 06:04:15 +00:00
|
|
|
|
require.config({
|
|
|
|
|
urlArgs: 'v=' + window.NzbDrone.Version
|
|
|
|
|
});
|
|
|
|
|
|
2013-11-22 22:13:36 +00:00
|
|
|
|
if (window.location.hostname.toLowerCase() !== 'localhost') {
|
|
|
|
|
require.config({
|
|
|
|
|
waitSeconds: 30
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-21 06:04:15 +00:00
|
|
|
|
define(
|
|
|
|
|
[
|
|
|
|
|
'app'
|
|
|
|
|
], function (app) {
|
|
|
|
|
'use strict';
|
|
|
|
|
app.start();
|
|
|
|
|
});
|