aboutsummaryrefslogtreecommitdiffstats
path: root/src/Scope.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-10 08:58:57 -0800
committerMisko Hevery2010-01-10 08:58:57 -0800
commit1aba6b53b88c70b61a0cc991b1371739305d117b (patch)
treed1d21efbd2df191824b7a02020190df0195f2fbb /src/Scope.js
parent9b9a0dadcce82ae42ac09ad396d647739af20a06 (diff)
downloadangular.js-1aba6b53b88c70b61a0cc991b1371739305d117b.tar.bz2
basic calculator works with minified.js, lots of references still broken
Diffstat (limited to 'src/Scope.js')
-rw-r--r--src/Scope.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scope.js b/src/Scope.js
index e3634cee..dff3bfbd 100644
--- a/src/Scope.js
+++ b/src/Scope.js
@@ -55,7 +55,7 @@ Scope.getter = function(instance, path) {
instance = instance[key];
}
if (_.isUndefined(instance) && key.charAt(0) == '$') {
- var type = angular.Global.typeOf(lastInstance);
+ var type = angular['Global']['typeOf'](lastInstance);
type = angular[type.charAt(0).toUpperCase()+type.substring(1)];
var fn = type ? type[[key.substring(1)]] : undefined;
if (fn) {