summaryrefslogtreecommitdiffstats
path: root/modules-available/roomplanner/js/grid.js
diff options
context:
space:
mode:
authorChristian Klinger2016-08-22 15:06:40 +0200
committerChristian Klinger2016-08-22 15:06:40 +0200
commitdf6a641147701aab803df8d0b4ac072595ddae75 (patch)
treee344e55d5e0bb9aa32230d22c208c4dbe7902cec /modules-available/roomplanner/js/grid.js
parentjust use fullscreen to mitigate the positioning bugs. (diff)
downloadslx-admin-df6a641147701aab803df8d0b4ac072595ddae75.tar.gz
slx-admin-df6a641147701aab803df8d0b4ac072595ddae75.tar.xz
slx-admin-df6a641147701aab803df8d0b4ac072595ddae75.zip
removed the tooltip plugin from jquery-ui.
jQuery-UI's tooltip() conflicted with the tooltip() function of bootstrap which we want to use.
Diffstat (limited to 'modules-available/roomplanner/js/grid.js')
-rw-r--r--modules-available/roomplanner/js/grid.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules-available/roomplanner/js/grid.js b/modules-available/roomplanner/js/grid.js
index 1b82f772..f0c18316 100644
--- a/modules-available/roomplanner/js/grid.js
+++ b/modules-available/roomplanner/js/grid.js
@@ -84,9 +84,8 @@ if (!roomplanner) var roomplanner = {
$(roomplanner.computerAttributes).each(function(i,key){
tip += __(key)+": "+$(el).attr(key)+"<br>";
});
-
- $(el).attr('data-togle','tooltip');
- $(el).attr('title',tip);
+
+ $(el).attr('title', tip);
$(el).tooltip({html: true});
}
},