Add jquery.blockUI definition

This commit is contained in:
Jeffrey Lee
2014-07-02 08:49:52 +08:00
parent 39a4a0f60a
commit fd687b0c15
2 changed files with 124 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
$.blockUI();
var opt: JQBlockUIOptions = {
css: { border: "1px solid red" },
message: "test"
};
$.blockUI(opt);
$.unblockUI();
$("#test").block().unblock();
$("#test").block(opt);