Skip to content

Commit

Permalink
Merge pull request #34 from LucaT75/master
Browse files Browse the repository at this point in the history
Fix for IE11
  • Loading branch information
rodikh authored Mar 6, 2017
2 parents 5d72af6 + 28f60e6 commit 4ef1098
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/angular-json-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,10 @@ angular.module('angular-json-editor', []).provider('JSONEditor', function () {
var buttons = transclude(scope, function (clone) {
return clone;
});

element.append(buttons);

transclude(scope, function (buttons) {
element.append(buttons);
});
});
}
};
Expand Down

0 comments on commit 4ef1098

Please sign in to comment.