Skip to content

Commit

Permalink
Made the "rake js:shell" command work with env.js and jQuery moved to…
Browse files Browse the repository at this point in the history
… the "vendor" directory.
  • Loading branch information
karnowski committed Oct 12, 2009
1 parent f3bb54e commit 0033299
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/shell.js
Expand Up @@ -11,16 +11,16 @@
var plugin_prefix = environment["blue.ridge.prefix"] || "vendor/plugins/blue-ridge";
var fixture_file = plugin_prefix + "/generators/blue_ridge/templates/application.html";

load(plugin_prefix + "/lib/env.rhino.js");
load(plugin_prefix + "/vendor/env.rhino.js");
print(" - loaded env.js");

window.location = fixture_file;
print(" - sample DOM loaded");

load(plugin_prefix + "/lib/jquery-1.3.2.js");
load(plugin_prefix + "/vendor/jquery-1.3.2.js");
print(" - jQuery-1.3.2 loaded");

load(plugin_prefix + "/lib/jquery.print.js");
load(plugin_prefix + "/vendor/jquery.print.js");
print(" - jQuery print lib loaded");

print("=================================================");
Expand Down

0 comments on commit 0033299

Please sign in to comment.