diff options
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js index 367a7752..407fc263 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -985,8 +985,12 @@ function bindJQuery(){    if (jQuery) {      jqLite = jQuery;      extend(jQuery.fn, { -      scope: JQLitePrototype.scope +      scope: JQLitePrototype.scope, +      inheritedData: JQLitePrototype.inheritedData      }); +    JQLitePatchJQueryRemove('remove', true); +    JQLitePatchJQueryRemove('empty'); +    JQLitePatchJQueryRemove('html');    } else {      jqLite = jqLiteWrap;    }  | 
