From 11d0b949a00f48b07c1101ddadb4fda6ec5b3443 Mon Sep 17 00:00:00 2001 From: Jon Egerton Date: Fri, 16 Aug 2013 17:20:03 +0100 Subject: [PATCH] Include the settings field on ColorboxStatic Included settings field ColorboxStatic. This is used for setting site-wide defaults for colorbox --- jquery.colorbox/jquery.colorbox.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jquery.colorbox/jquery.colorbox.d.ts b/jquery.colorbox/jquery.colorbox.d.ts index f9408cd0b9..164d47bb3b 100644 --- a/jquery.colorbox/jquery.colorbox.d.ts +++ b/jquery.colorbox/jquery.colorbox.d.ts @@ -277,6 +277,10 @@ interface ColorboxStatic { * Removes all traces of Colorbox from the document. */ remove(): void; + /** + * Default settings used for Colorbox calls + */ + settings: ColorboxSettings; } @@ -292,4 +296,4 @@ interface JQueryStatic { interface JQuery { colorbox: Colorbox; -} \ No newline at end of file +}