Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit fb5fabf

Browse files
navarroaxelwesleycho
authored andcommitted
fix(modal): switch to .append
- Switch to `append` since `html` is jQuery specific Closes #6187 Fixes #6186
1 parent aef24cd commit fb5fabf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modal/modal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.stackedMap', 'ui.bootstrap.p
537537
'tabindex': -1,
538538
'uib-modal-animation-class': 'fade',
539539
'modal-in-class': 'in'
540-
}).html(content);
540+
}).append(content);
541541
if (modal.windowClass) {
542542
angularDomEl.addClass(modal.windowClass);
543543
}

0 commit comments

Comments
 (0)