From ef27b9dc1457a301b4c16b726a50d6ab3e0a9596 Mon Sep 17 00:00:00 2001 From: Christopher Haws Date: Sat, 25 Jul 2015 11:45:49 -0700 Subject: [PATCH] Added string to ModelOptions backdrop property. The existing interfaces don't allow for the following use of ModelOptions. ``` options = { backdrop: forceUserInteraction ? "static" : true }; ``` --- bootstrap/bootstrap.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/bootstrap.d.ts b/bootstrap/bootstrap.d.ts index b9fe9cd59..47a992fba 100644 --- a/bootstrap/bootstrap.d.ts +++ b/bootstrap/bootstrap.d.ts @@ -7,7 +7,7 @@ /// interface ModalOptions { - backdrop?: boolean; + backdrop?: boolean|string; keyboard?: boolean; show?: boolean; remote?: string;