diff options
Diffstat (limited to 'src/ng/compile.js')
| -rw-r--r-- | src/ng/compile.js | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/ng/compile.js b/src/ng/compile.js index 46ebe71a..c059af47 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1220,6 +1220,11 @@ function $CompileProvider($provide) {        if (!interpolateFn) return; +      if (name === "multiple" && nodeName_(node) === "SELECT") { +        throw new $compileMinErr("selmulti", "Binding to the multiple attribute is not supported. Element: {0}", +            startingTag(node)); +      } +        directives.push({          priority: 100,          compile: valueFn(function attrInterpolateLinkFn(scope, element, attr) { | 
