Skip to content

Commit 4f58413

Browse files
committed
disable requirejs timeout
1 parent 8427895 commit 4f58413

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

Gruntfile.js

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ module.exports = function(grunt) {
5454
generateSourceMaps: true,
5555
preserveLicenseComments: false,
5656
optimize: 'uglify2',
57+
waitSeconds: 0,
5758
paths: {
5859
jquery: '../libs/jquery.min',
5960
underscore: '../libs/underscore.min',
@@ -85,6 +86,7 @@ module.exports = function(grunt) {
8586
generateSourceMaps: true,
8687
preserveLicenseComments: false,
8788
optimize: 'uglify2',
89+
waitSeconds: 0,
8890
paths: {
8991
jquery: '../libs/jquery.min',
9092
underscore: '../libs/underscore.min',

scripts/bgprocess.js

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
require.config({
1212

1313
baseUrl: 'scripts/bgprocess',
14+
waitSeconds: 0,
1415

1516
paths: {
1617
jquery: '../libs/jquery.min',

scripts/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
require.config({
22

33
baseUrl: 'scripts/app',
4+
waitSeconds: 0,
45

56
paths: {
67
jquery: '../libs/jquery.min',

0 commit comments

Comments
 (0)