From 844147f9a361b51c0727234f50369829c88222cf Mon Sep 17 00:00:00 2001 From: Jeffrey Lee Date: Thu, 3 Jul 2014 08:44:02 +0800 Subject: [PATCH] Fix indentation (replace tab with spaces) --- jquery.blockUI/jquery.blockUI.d.ts | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/jquery.blockUI/jquery.blockUI.d.ts b/jquery.blockUI/jquery.blockUI.d.ts index 112af0dcff..5b1df3f7be 100644 --- a/jquery.blockUI/jquery.blockUI.d.ts +++ b/jquery.blockUI/jquery.blockUI.d.ts @@ -98,32 +98,32 @@ interface JQBlockUIOptions { } interface JQBlockUIStatic { - /** default options */ + /** default options */ default?: JQBlockUIOptions; - /** block user activity for the page */ + /** block user activity for the page */ (): void; - /** - * block user activity for the page - * @param options options - */ + /** + * block user activity for the page + * @param options options + */ (option: JQBlockUIOptions): void; } interface JQueryStatic { - /** block user activity for the page */ + /** block user activity for the page */ blockUI?: JQBlockUIStatic; - /** unblock the page */ + /** unblock the page */ unblockUI?: () => void; } interface JQuery { - /** - * block the element(s) - * @param options block options - */ + /** + * block the element(s) + * @param options block options + */ block(option?: JQBlockUIOptions): JQuery; - /** - * unblock the element(s) - */ + /** + * unblock the element(s) + */ unblock(): JQuery; } \ No newline at end of file