| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2011-04-01 | upgrade jstd to 1.3.2 + improve test-coverage.sh script | Igor Minar | |
| 2011-03-31 | fix infinite loop in elementError when working with detached elements | Igor Minar | |
| 2011-03-31 | encode query params correctly but not too agressively | Igor Minar | |
| 2011-03-31 | add much needed whitespace to jqLiteSpec.js | Igor Minar | |
| can we agree to put more white space into our code? I follow there rules for specs: - 1 blank line between sections of nontrivial it block - 2 blank lines between it blocks - 2 blank lines between describe blocks - 2 blank lines between beforeEach and afterEach - no blank line between describe and the first child it - no blank lines between two or more closing }); lines | |||
| 2011-03-31 | add specs for jqLite wrapping/node creation | Igor Minar | |
| tests cover: - creating comment tags from a string - creating script tag from a string - wrapping document fragment | |||
| 2011-03-31 | ignore jqLite#append for doc fragment | Igor Minar | |
| this is needed to be compatible with jqQuery 1.5.1 | |||
| 2011-03-31 | fix jqLite#parent to be compatible with jQuery | Igor Minar | |
| our original implementation doesn't work with document fragments on IE - tests were added to cover missing cases | |||
| 2011-03-30 | use document fragments to grow repeaters | Igor Minar | |
| - unless we are repeating OPTION elements, buffer new nodes in document fragment and append them to the DOM in one go at the end - for OPTION elements we have to keep on using the old way because of how option widget communicates with select widget this should be change, but that change is out of scope of this CL - modify jqLite to support wrapping of document fragments - fix jqLite documentation typo This change unintentionally avoids the following webkit bug that that affects repeater growth: https://bugs.webkit.org/show_bug.cgi?id=57059 However the following bug affecting shrining of repeaters is still unresolved https://bugs.webkit.org/show_bug.cgi?id=57061 | |||
| 2011-03-30 | correct size() impl for object's w/ 'length' prop | Igor Minar | |
| the original implementation returned incorrect value value for objects with 'length' property. | |||
| 2011-03-30 | extend size() to take ownPropsOnly param | Igor Minar | |
| - extend size() to take size(obj, ownPropsOnly) - add specs for size() - update docs to mention string support - use size() in ng:repeat including the hasOwnProp check for all object doesn't create significant perf penalty: http://jsperf.com/dedicated-code-branch-for-hasownprop | |||
| 2011-03-30 | call $eval in repeater only when needed | Igor Minar | |
| when growing children linker calls eval for new nodes, so we need to call it only for reused nodes. | |||
| 2011-03-30 | make xhr.cache optionally synchronous | Igor Minar | |
| - add `sync` flag xhr.cache - change ng:include to use the sync flag - change ng:view to use the sync flag The end result is that there are fewer repaints in the browser, which means less "blinking" that user sees. | |||
| 2011-03-30 | remove weird spaces from resource mutation test | Igor Minar | |
| 2011-03-29 | Don't mutate resource if server responded with no body | Anthony Lieuallen | |
| If the server provides response with no body to a resource request, resource should not mutate the resource model in the callback. | |||
| 2011-03-28 | Fixes some links and types in the DI docs. | Pepper Lebeck-Jobe | |
| 2011-03-28 | encode $resource query params using encodeURIComponent | Igor Minar | |
| 2011-03-28 | fixing lint warnings | Igor Minar | |
| 2011-03-28 | Added missing semi-colons | Vojta Jina | |
| So that my eclipse stops complaining... | |||
| 2011-03-26 | upgrade closure compiler to version 20110322 | Igor Minar | |
| the new version minifies our js better: before | after | diff ----------------------------------------- min | 62161 | 60868 | -2.1% min+gzip | 25176 | 24552 | -2.5% | |||
| 2011-03-26 | renaming lib/compiler-closure to lib/closure-compiler | Igor Minar | |
| 2011-03-26 | remove _null and _undefined | Igor Minar | |
| they have no significant effect on minified and gziped size. in fact they make things worse. file | before | after removal ---------------------------------------- concat | 325415 | 325297 min | 62070 | 62161 min + gzip | 25187 | 25176 The bottom line is that we are getting 0.05% decrease in size after gzip without all of the hassle of using underscores everywhere. | |||
| 2011-03-23 | fix broken 'downloading' links | Igor Minar | |
| 2011-03-22 | Fixes two links on the conribute page. | Pepper Lebeck-Jobe | |
| 2011-03-22 | Fixes a typo xmlsn -> xmlns | Pepper Lebeck-Jobe | |
| 2011-03-22 | Require 'yaml' in Rakefile. | Anthony Lieuallen | |
| 2011-03-15 | fixing broken angular-mocks.js | Igor Minar | |
| 2011-03-13 | preparing the 0.9.14 key-maker iteration | Igor Minar | |
| 2011-03-13 | cutting the 0.9.13 curdling-stare releasev0.9.13 | Igor Minar | |
| 2011-03-13 | preparing release notes for the 0.9.13 curdling stare release | Igor Minar | |
| 2011-03-11 | Stop using document write, so that we are compatible with async script loader | Misko Hevery | |
| 2011-03-11 | Remove the script tag after successful JSONP request | Misko Hevery | |
| 2011-03-11 | Added XSRF prevention logic to $xhr service | Misko Hevery | |
| 2011-03-11 | @require in ngdoc now takes reason for dependency | Misko Hevery | |
| 2011-03-11 | Changed the $browser.xhr parameter post from optional to required | Misko Hevery | |
| 2011-03-11 | Consider all 2xx responses as OK, not just 200 | Misko Hevery | |
| 2011-03-11 | Fixed cookies which contained unescaped '=' would not show up in cookie service. | Misko Hevery | |
| 2011-03-11 | fix failing autobind test on IE | Igor Minar | |
| 2011-03-11 | ng:autobind now optionally takes element id | Igor Minar | |
| so it is possible to easily compile just a part of a document. e.g.: <html> <head> <title>partially compiled doc</title> <script src="angular.js" ng:autobind="compileThis"></script> </head> <body> this part won't be compiled: {{1+2}} <div id="compileThis" ng:init="i=0" ng:click="i = i+1"> Click count: {{i}} </div> </body> </html> | |||
| 2011-03-11 | angularJsConfig now allows ng:autobind and #autobind value to be passed in | Igor Minar | |
| 2011-03-09 | pass undefined through fn closure for better minification | Misko Hevery | |
| 2011-03-09 | Fix IE: reffering to non existent var on window, must be prefixed by window | Misko Hevery | |
| 2011-03-08 | fix ie7 regression in jqLite which prevented | Misko Hevery | |
| 2011-03-07 | upgrading jasmin-jstd-adapter to 1ade1ad7cad4caadb3a3 11-03-07 | Igor Minar | |
| 2011-03-07 | jstd r899 2011-02-18 (post 1.3.1) + fix for jasmine adapter. | Igor Minar | |
| 2011-03-05 | fix orberBy documentation error | Misko Hevery | |
| 2011-03-03 | preparing the 0.9.13 curdling-stare iteration | Igor Minar | |
| 2011-03-03 | cutting the 0.9.12 thought-implanter releasev0.9.12 | Igor Minar | |
| 2011-03-03 | re-eagarizing the $hover service - mea culpa | Igor Minar | |
| 2011-03-03 | fixing left over .scope | Igor Minar | |
| 2011-03-03 | fixing link in thought-implanter release notes | Igor Minar | |
