Skip to content

Commit 4ef1098

Browse files
authored
Merge pull request #34 from LucaT75/master
Fix for IE11
2 parents 5d72af6 + 28f60e6 commit 4ef1098

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/angular-json-editor.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,10 @@ angular.module('angular-json-editor', []).provider('JSONEditor', function () {
152152
var buttons = transclude(scope, function (clone) {
153153
return clone;
154154
});
155-
156-
element.append(buttons);
155+
156+
transclude(scope, function (buttons) {
157+
element.append(buttons);
158+
});
157159
});
158160
}
159161
};

0 commit comments

Comments
 (0)