diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-04-23 08:44:55 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-04-23 08:44:55 -0400 |
commit | 3b54760b51fde0e541d2b47c34475ab29a4eea79 (patch) | |
tree | 232b22d4e1bd939a84d2c99f8a16deda63a5a91b /tests/resource_loader.js | |
parent | 822e1c500976634f0b9c49e6ad40aa6ec172e9e0 (diff) | |
download | jquery-ui-3b54760b51fde0e541d2b47c34475ab29a4eea79.tar.gz jquery-ui-3b54760b51fde0e541d2b47c34475ab29a4eea79.zip |
Tests: Run JSHint in unit tests, unless nojshint=1 is specified in the query string.
Diffstat (limited to 'tests/resource_loader.js')
-rw-r--r-- | tests/resource_loader.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/resource_loader.js b/tests/resource_loader.js index c8dec4881..9a03411a2 100644 --- a/tests/resource_loader.js +++ b/tests/resource_loader.js @@ -24,8 +24,9 @@ function includeScript( url ) { window.loadResources = min ? function() { - includeStyle( "build/dist/theme/jquery-ui.min.css" ); - includeScript( "build/dist/jquery-ui.min.js" ); + // TODO: proper include with theme images + includeStyle( "dist/jquery-ui.min.css" ); + includeScript( "dist/jquery-ui.min.js" ); } : function( resources ) { $.each( resources.css || [], function( i, resource ) { |