summaryrefslogtreecommitdiffstats
path: root/web/blocking.js
diff options
context:
space:
mode:
Diffstat (limited to 'web/blocking.js')
-rw-r--r--web/blocking.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/web/blocking.js b/web/blocking.js
deleted file mode 100644
index d45992f..0000000
--- a/web/blocking.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (c) 2012-2015 Kaarle Ritvanen
- * See LICENSE file for license details
- */
-
-define(["jquery", "jquery-blockui"], function($) {
- var enabled = false;
-
- return {
- enable: function() {
- $.blockUI();
- enabled = true;
- },
- disable: function() {
- $.unblockUI();
- enabled = false;
- },
- isEnabled: function() { return enabled; }
- };
-});