Skip to content

Commit

Permalink
un-vendor johnson (pulled in as dependence); window.toString() is now…
Browse files Browse the repository at this point in the history
… standard [object Window]
  • Loading branch information
smparkes committed Feb 6, 2010
1 parent f623580 commit dfb5e51
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

6 changes: 3 additions & 3 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ namespace :johnson do

desc "run tests against johnson"
task :test => :compile do
ruby "-Ilib:vendor/johnson/lib bin/envjsrb test/primary-tests.js"
ruby "-Ilib:vendor/johnson/lib bin/envjsrb test/prototype-test.js"
ruby "-Ilib:vendor/johnson/lib bin/envjsrb test/call-load-test.js"
ruby "bin/envjsrb test/primary-tests.js"
ruby "bin/envjsrb test/prototype-test.js"
ruby "bin/envjsrb test/call-load-test.js"
end

end
Expand Down
3 changes: 2 additions & 1 deletion src/intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
$platform.init_window = function(window) {
var index = master.window_index++;
window.toString = function(){
return "[object Window "+index+"]";
// return "[object Window "+index+"]";
return "[object Window]";
};
};

Expand Down
1 change: 0 additions & 1 deletion vendor/johnson
Submodule johnson deleted from 99d62b

0 comments on commit dfb5e51

Please sign in to comment.