diff options
| author | Igor Minar | 2012-01-24 02:33:35 -0800 |
|---|---|---|
| committer | Igor Minar | 2012-01-25 16:17:43 -0800 |
| commit | 39b3297fc34b6b15bb3487f619ad1e93c4480741 (patch) | |
| tree | e78eee301f3f19add0416482516a1fa95c159fdc /src/widget/input.js | |
| parent | 1268fc1a44e1359f670a586e6cbc6774736f0a2d (diff) | |
| download | angular.js-39b3297fc34b6b15bb3487f619ad1e93c4480741.tar.bz2 | |
fix($parse): get rid of $unboundFn
Closes #731
Diffstat (limited to 'src/widget/input.js')
| -rw-r--r-- | src/widget/input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget/input.js b/src/widget/input.js index 9f522d18..05390b38 100644 --- a/src/widget/input.js +++ b/src/widget/input.js @@ -741,7 +741,7 @@ var inputDirective = ['$defer', '$formFactory', function($defer, $formFactory) { type = lowercase(type); TypeController = (loadFromScope - ? (assertArgFn(modelScope.$eval(loadFromScope[1]), loadFromScope[1])).$unboundFn + ? assertArgFn(modelScope.$eval(loadFromScope[1]), loadFromScope[1]) : angularInputType(type)) || noop; if (!HTML5_INPUTS_TYPES[type]) { |
