aboutsummaryrefslogtreecommitdiffstats
path: root/test/markupSpec.js
AgeCommit message (Collapse)Author
2011-07-26style(warnings): prevent the browser from making bogus GET requests during testsMisko Hevery
2011-07-18feat(strict mode): adding strict mode flag to all js filesIgor Minar
the flag must be in all src and test files so that we get the benefit of running in the strict mode even in jstd the following script was used to modify all files: for file in `find src test -name "*.js"`; do echo -e "'use strict';\n" > temp.txt cat $file >> temp.txt mv temp.txt $file done
2011-06-16Added ng:disabled, ng:checked, ng:multiple, ng:readonly, ng:selected to ↵Di Peng
markup.js. Also added coresponding descriptions live examples and tests for each directive to be displayed on the website. Closes #351
2011-03-01linking function should return bound scopeIgor Minar
angular.compile()() returns {scope:scope, view:view}, this isn't useful at all and only makes tests more verbose. Instead, this change makes the linking function return scope directly and if anyone needs the linked dom there are two ways to do it documented in angular.compile. other changes: - moved angular.compile docs to the compiler so that they are closer to the compiler - fixed some typos and updated angular.compile docs with the new return value
2011-02-19fix test which fails on CI build, because the image has sizeMisko Hevery
2011-02-16Change API angular.compile(element)([scope], [element/true])Misko Hevery
2011-02-16remove $init on scope from applying compilation templateMisko Hevery
Closes #40
2011-02-04smarter normalization of value on option, and htmlParser fixesMisko Hevery
2011-02-03fixed population of value attribute on optionMisko Hevery
The value attribute must be populated manually, since different browsers default to different value of option when not explicitly defined.
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2010-12-02Closes #170. Corrected the behavior of select when options are ng:repeatedMisko Hevery
- Delete $postEval method, as it was a hack
2010-09-21fixed test for ng:src which fails on IE, since IE treats undefined src as ↵Misko Hevery
url to the current page.
2010-09-20Add ng:src and ng:href markup.Alkis Evlogimenos
2010-07-02change all attributes from ng- to ng: prefixMisko Hevery
2010-04-22fix CI BuildMisko Hevery
2010-04-21ie6 and ie8 passMisko Hevery
2010-04-21ie6 now passesMisko Hevery
2010-04-21more if tests passMisko Hevery
2010-04-09various bug fixesMisko Hevery
2010-03-31all tests green, some dissabledMisko Hevery
2010-03-29dissabled a lot of tests, and made the core test set pass.Misko Hevery
2010-03-25major refactoring of scopeMisko Hevery
2010-03-25input select-one now worksMisko Hevery
2010-03-23markup now wroks, some refactoringsMisko Hevery