aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-05-14fix($sniffer): report history false on Android < 4Vojta Jina
Android has history.pushState, but it does not update the location correctly: http://code.google.com/p/android/issues/detail?id=17471 Closes #904
2012-05-14fix($location): support urls with any protocolIgor Minar
The url used for location parsing was quite strict and did not support custom url schemes like "chrome-extension://". With this change the only requirement for scheme is that it doesn't contain ":" character.
2012-05-13fix($browser/$location): single quote in url causes infinite digest in FFIgor Minar
The real issue is in FF, see https://bugzilla.mozilla.org/show_bug.cgi?id=407172. FF overly encodes stuff which breaks our expectations and then we fail .url() != currentUrl.absUrl() comparison unexpectidly, which leads to infinite digest. The workaround is to correct for this inconsistency in $browser and decode any single quotes in urls. Closes #920
2012-05-08doc($rootScope): fix $digest exampleIgor Minar
2012-05-07bug(ie8 docs): docs now work on ie8Misko Hevery
2012-05-07bug(html5 navigation): broken in OperaMisko Hevery
http://my.opera.com/community/forums/topic.dml?id=1185462 Closes# 938
2012-05-07chore(release): starting 1.0.0rc9 eggplant-teleportation interationIgor Minar
2012-05-07chore(release): cutting the 1.0.0rc8 blooming-touch releasev1.0.0rc8Igor Minar
2012-05-07docs(changelog): release notes for 1.0.0rc8 blooming-touchIgor Minar
2012-05-06fix(ngSrc,ngHref): binding should set element prop as well as attrIgor Minar
IE9 ignores setAttribute('src', val) calls on img if "ng:src" attribute is present. It only fetches the image if element property is updated as well. Closes #935
2012-05-06fix(ngModel): use keydown/change events on IE9 instead of inputIgor Minar
On IE9 the input event is not fired when backspace or delete key are pressed or when cut is performed. This makes listening on the input event unreliable and therefore it's better for us to just use keydown/change events instead. Closes #879
2012-05-05fix(scenario): make browser().location() working if ng-app on other than <html>Vojta Jina
2012-05-05fix($parse): support methods on falsy primitive typesVojta Jina
e.g. zero, false, empty string - fix tests to be executed with csp true - fix cps (when more than 5 parts)
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-05-04bug($cookie): set on app base path rather the current path.Misko Hevery
2012-05-04fix($compile): have $observe return registration functionMisko Hevery
2012-05-04feat(bootstrap): support code prettify and dropdown from bootstrapMisko Hevery
2012-05-04chore(controller): allow setting map of controllersMisko Hevery
2012-05-04chore(module): improved module prefix/suffix codeMisko Hevery
2012-05-04chore(debug): rewrite angular-bootstrap.js to use $scriptMisko Hevery
2012-05-04fix($compile): ignore ws when checking if template has single rootIgor Minar
Also add the same error checking for sync templates. Closes #910
2012-05-03style($compile): rename orig*Node to beforeTemplate*NodeIgor Minar
2012-05-03fix($compile): fix replaceWithIgor Minar
the old implementation didn't reattach jquery/jqlite data which caused things like to be lost I tried various implementations but it appears that by reattaching the data to the new node by copying the expando property is the most reliable of all.
2012-05-03chore(testabilityPatch): print number of leaked references if anyIgor Minar
2012-05-03feat(jqLite): support data() getter and data(obj) setterIgor Minar
... just like jquery does
2012-05-03style(jqLite): clean up the codeIgor Minar
2012-05-03style($compile): clean up the code and normalize fn namesIgor Minar
2012-05-03chore(trace): add helper method traceIgor Minar
use it as trace('label') to dump the stack during debugging
2012-05-03fix($compile): attach scope to the directive element when templateUrl and ↵Igor Minar
replace=true We forgot to reattach the scope to the replacement element. This affected only directives that had templateUrl and replace:true properties. Reported on the mailing list: https://groups.google.com/forum/?fromgroups#!topic/angular/zwjLr1msS2Y http://jsfiddle.net/lukebayes/g9Sh9/
2012-05-03chore($compile): remove obsolete <<CONTENT>> transclusionIgor Minar
This stuff was never documented and is an accidental leftover from the time when the compiler was rewritten. If any code depends on this, it should be rewritten to use ngTransclude directive intead.
2012-05-03fix($compile): prevent duplicate directive controller instantiationIgor Minar
Closes #876
2012-05-02style($compile): rename compiler.js to compile.jsIgor Minar
2012-05-02fix(select): don't interfere with selection if not databoundIgor Minar
Closes #926
2012-05-02chore(release): starting the 1.0.0rc8 blooming-touch iterationIgor Minar
2012-04-30chore(release): cut 1.0.0rc7 rc-generation releasev1.0.0rc7Igor Minar
2012-04-30docs(changelog): release notes for 1.0.0rc7 rc-generationIgor Minar
2012-04-30docs(ngCsp): make the CSP docs publicly visibleIgor Minar
2012-04-30docs(ngSanitize): fix directive linksIgor Minar
2012-04-30docs(tutorial): update all the remaining stepsIgor Minar
I made some diagrams and portions of the text that are stil stale invisible. We'll fix these in the next relese.
2012-04-27feat($parse): CSP compatibilityIgor Minar
CSP (content security policy) forbids apps to use eval or Function(string) generated functions (among other things). For us to be compatible, we just need to implement the "getterFn" in $parse without violating any of these restrictions. We currently use Function(string) generated functions as a speed optimization. With this change, it will be possible to opt into the CSP compatible mode using the ngCsp directive. When this mode is on Angular will evaluate all expressions up to 30% slower than in non-CSP mode, but no security violations will be raised. In order to use this feature put ngCsp directive on the root element of the application. For example: <!doctype html> <html ng-app ng-csp> ... ... </html> Closes #893
2012-04-27chore(server.js): Add CSP supportIgor Minar
The support is disabled by default, uncomment relevant lines to enable it.
2012-04-23chore(check-size): add a script to check gziped sizeIgor Minar
this is useful to quickly check the resulting size during development
2012-04-23chore(release): start 1.0.0rc7 rc-generation iterationIgor Minar
2012-04-21docs(directive): fix transclusion examplesVojta Jina
2012-04-20fix(events): include ie8 in extra event property resetMisko Hevery
2012-04-20fix(bootstrap): rewritten to $scriptMisko Hevery
2012-04-20fix(mouseenter): FF no longer throws exceptionsMisko Hevery
2012-04-20chore(release): cutting the 1.0.0rc6 runny-nose releasev1.0.0rc6Igor Minar
2012-04-20docs(changelog): release notes for 1.0.0rc6 runny-noseIgor Minar
2012-04-20fix(select): properly handle empty & unknown options without ngOptionsIgor Minar
Previously only when ngOptions was used, we correctly handled situations when model was set to an unknown value. With this change, we'll add/remove extra unknown option or reuse an existing empty option (option with value set to "") when model is undefined.