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

Commit 353e612

Browse files
jsanderspkozlowski-opensource
authored andcommitted
feat(modal): add backdropClass option, similar to windowClass option
Really, identical to windowClass, but for backdrop. Fixes #1179 Closes #1862
1 parent ef62364 commit 353e612

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

src/modal/docs/readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The `$modal` service has only one method: `open(options)` where available option
1010
* `resolve` - members that will be resolved and passed to the controller as locals; it is equivalent of the `resolve` property for AngularJS routes
1111
* `backdrop` - controls presence of a backdrop. Allowed values: true (default), false (no backdrop), `'static'` - backdrop is present but modal window is not closed when clicking outside of the modal window.
1212
* `keyboard` - indicates whether the dialog should be closable by hitting the ESC key, defaults to true
13+
* `backdropClass` - additional CSS class(es) to be added to a modal backdrop template
1314
* `windowClass` - additional CSS class(es) to be added to a modal window template
1415
* `windowTemplateUrl` - a path to a template overriding modal's window template
1516
* `size` - optional size of modal window. Allowed values: `'sm'` (small) or `'lg'` (large). Requires Bootstrap 3.1.0 or later

src/modal/modal.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.transition'])
6262
restrict: 'EA',
6363
replace: true,
6464
templateUrl: 'template/modal/backdrop.html',
65-
link: function (scope) {
65+
link: function (scope, element, attrs) {
66+
scope.backdropClass = attrs.backdropClass || '';
6667

6768
scope.animate = false;
6869

@@ -225,7 +226,9 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.transition'])
225226
if (currBackdropIndex >= 0 && !backdropDomEl) {
226227
backdropScope = $rootScope.$new(true);
227228
backdropScope.index = currBackdropIndex;
228-
backdropDomEl = $compile('<div modal-backdrop></div>')(backdropScope);
229+
var angularBackgroundDomEl = angular.element('<div modal-backdrop></div>');
230+
angularBackgroundDomEl.attr('backdrop-class', modal.backdropClass);
231+
backdropDomEl = $compile(angularBackgroundDomEl)(backdropScope);
229232
body.append(backdropDomEl);
230233
}
231234

@@ -360,6 +363,7 @@ angular.module('ui.bootstrap.modal', ['ui.bootstrap.transition'])
360363
content: tplAndVars[0],
361364
backdrop: modalOptions.backdrop,
362365
keyboard: modalOptions.keyboard,
366+
backdropClass: modalOptions.backdropClass,
363367
windowClass: modalOptions.windowClass,
364368
windowTemplateUrl: modalOptions.windowTemplateUrl,
365369
size: modalOptions.size

src/modal/test/modal.spec.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,18 @@ describe('$modal', function () {
460460
expect(backdropEl).not.toHaveClass('in');
461461

462462
});
463+
464+
describe('custom backdrop classes', function () {
465+
466+
it('should support additional backdrop class as string', function () {
467+
open({
468+
template: '<div>With custom backdrop class</div>',
469+
backdropClass: 'additional'
470+
});
471+
472+
expect($document.find('div.modal-backdrop')).toHaveClass('additional');
473+
});
474+
});
463475
});
464476

465477
describe('custom window classes', function () {
@@ -473,7 +485,7 @@ describe('$modal', function () {
473485
expect($document.find('div.modal')).toHaveClass('additional');
474486
});
475487
});
476-
488+
477489
describe('size', function () {
478490

479491
it('should support creating small modal dialogs', function () {

template/modal/backdrop.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="modal-backdrop fade"
1+
<div class="modal-backdrop fade {{ backdropClass }}"
22
ng-class="{in: animate}"
33
ng-style="{'z-index': 1040 + (index && 1 || 0) + index*10}"
44
></div>

0 commit comments

Comments
 (0)