resources now use browser mock

This commit is contained in:
Misko Hevery
2010-04-27 11:18:08 -07:00
parent b275403465
commit fce48eb60a
7 changed files with 50 additions and 17 deletions

View File

@@ -10,20 +10,21 @@ function childNode(element, index) {
}
extend(angular, {
'element': jqLite,
'bind': bind,
'compile': compile,
'scope': createScope,
'copy': copy,
'element': jqLite,
'extend': extend,
'foreach': foreach,
'noop':noop,
'identity':identity,
'isUndefined': isUndefined,
'isDefined': isDefined,
'isString': isString,
'isFunction': isFunction,
'isNumber': isNumber,
'isArray': isArray
'isArray': isArray,
'noop':noop,
'scope': createScope
});