summaryrefslogtreecommitdiff
path: root/assets/js/src/link.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/src/link.js')
-rw-r--r--assets/js/src/link.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/assets/js/src/link.js b/assets/js/src/link.js
deleted file mode 100644
index 31eeafad..00000000
--- a/assets/js/src/link.js
+++ /dev/null
@@ -1,19 +0,0 @@
-Kanboard.Link = (function() {
-
- function on_change() {
- if ($('.behaviour').prop('checked')) {
- $('.link-inverse-label').hide();
- }
- else {
- $('.link-inverse-label').show();
- }
- }
-
- jQuery(document).ready(function() {
- if (Kanboard.Exists("link-edit-section")) {
- on_change();
- $(".behaviour").click(on_change);
- }
- });
-
-})(); \ No newline at end of file