diff options
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 ) { |