mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
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:
Vendored
+1
-1
@@ -7,7 +7,7 @@
|
||||
/// <reference path="../jquery/jquery.d.ts"/>
|
||||
|
||||
interface ModalOptions {
|
||||
backdrop?: boolean;
|
||||
backdrop?: boolean|string;
|
||||
keyboard?: boolean;
|
||||
show?: boolean;
|
||||
remote?: string;
|
||||
|
||||
Reference in New Issue
Block a user