Added string to ModelOptions backdrop property.

The existing interfaces don't allow for the following use of ModelOptions.

```
options = <ModalOptions>{
    backdrop: forceUserInteraction ? "static" : true
};
```
This commit is contained in:
Christopher Haws
2015-07-25 11:45:49 -07:00
parent f6c8ca4719
commit ef27b9dc14
+1 -1
View File
@@ -7,7 +7,7 @@
/// <reference path="../jquery/jquery.d.ts"/>
interface ModalOptions {
backdrop?: boolean;
backdrop?: boolean|string;
keyboard?: boolean;
show?: boolean;
remote?: string;