aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/directive/ngBind.js
AgeCommit message (Collapse)Author
2013-04-19docs(ngBind): fix typoMichal Reichert
2013-03-29docs(*): fixed typosPascal Borreli
2012-09-06fix(*): name all anonymous watch functions in AngularShyam Seshadri
This will allow us to see function names in Batarang and debugger. Closes #1119
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-02doc(guide): clean up broken linksMisko Hevery
2012-04-30docs(ngSanitize): fix directive linksIgor Minar
2012-04-20docs(ngBind): "angular.module.ng.$sanitize" -> ↵johnlindquist
"angular.module.ngSanitize.$sanitize"
2012-04-20docs(ngBind): "makes make" -> "makes"johnlindquist
2012-04-11chore(ngSanitize): extract $sanitize, ngBindHtml, linkyFilter into a moduleVojta Jina
Create build for other modules as well (ngResource, ngCookies): - wrap into a function - add license - add version Breaks `$sanitize` service, `ngBindHtml` directive and `linky` filter were moved to the `ngSanitize` module. Apps that depend on any of these will need to load `angular-sanitize.js` and include `ngSanitize` in their dependency list: `var myApp = angular.module('myApp', ['ngSanitize']);`
2012-04-09fix(ngBindHtml): clear contents when model is falsyIgor Minar
Closes #864
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-04-04fix(docs): remove ngModelInstant from all examplesIgor Minar
just fixing leftover code after the removal of ngModelInstant
2012-03-28chore(module): move files around in preparation for more modulesMisko Hevery