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

Commit

Permalink
fix(modal): switch to .append
Browse files Browse the repository at this point in the history
- Switch to `append` since `html` is jQuery specific

Closes #6187
Fixes #6186
  • Loading branch information
navarroaxel authored and wesleycho committed Aug 21, 2016
1 parent aef24cd commit fb5fabf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modal/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.stackedMap', 'ui.bootstrap.p
'tabindex': -1,
'uib-modal-animation-class': 'fade',
'modal-in-class': 'in'
}).html(content);
}).append(content);
if (modal.windowClass) {
angularDomEl.addClass(modal.windowClass);
}
Expand Down

0 comments on commit fb5fabf

Please sign in to comment.