diff options
Diffstat (limited to 'src/Scope.js')
| -rw-r--r-- | src/Scope.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Scope.js b/src/Scope.js index 7d802a51..c5612c9f 100644 --- a/src/Scope.js +++ b/src/Scope.js @@ -15,7 +15,7 @@ function getter(instance, path, unboundFn) {      if (isUndefined(instance)  && key.charAt(0) == '$') {        var type = angular['Global']['typeOf'](lastInstance);        type = angular[type.charAt(0).toUpperCase()+type.substring(1)]; -      var fn = type ? type[[key.substring(1)]] : _undefined; +      var fn = type ? type[[key.substring(1)]] : undefined;        if (fn) {          instance = bind(lastInstance, fn, lastInstance);          return instance; | 
