Skip to content

Commit

Permalink
tests broken, but bootstrap works
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Mar 29, 2010
1 parent 258ca5f commit c655b88
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
24 changes: 11 additions & 13 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,21 @@ task :compile do

concat = %x(cat \
src/angular.prefix \
lib/webtoolkit/webtoolkit.base64.js \
src/Angular.js \
src/API.js \
src/Binder.js \
src/ControlBar.js \
src/DataStore.js \
src/Filters.js \
src/Formatters.js \
src/JSON.js \
src/Model.js \
src/Compiler.js \
src/Scope.js \
src/jqlite.js \
src/Parser.js \
src/Resource.js \
src/Scope.js \
src/Server.js \
src/Users.js \
src/Validators.js \
src/Widgets.js \
src/URLWatcher.js \
src/apis.js \
src/filters.js \
src/formatters.js \
src/validators.js \
src/directives.js \
src/markups.js \
src/widgets.js \
src/angular.suffix \
)
f = File.new("angular.js", 'w')
Expand Down
Binary file modified lib/jstestdriver/JsTestDriver.jar
Binary file not shown.
10 changes: 5 additions & 5 deletions src/angular.prefix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
* The MIT License
*
*
* Copyright (c) 2010 Adam Abrons and Misko Hevery http://getangular.com
*
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Expand All @@ -21,4 +21,4 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
(function(window, document){
(function(window, document, onLoadDelegate){
2 changes: 1 addition & 1 deletion src/angular.suffix
Original file line number Diff line number Diff line change
@@ -1 +1 @@
})(window, document);
})(window, document, window.onload);
File renamed without changes.

0 comments on commit c655b88

Please sign in to comment.