From 41984ed6d227ce3c9db867d30a55da94f7f53638 Mon Sep 17 00:00:00 2001 From: Daniel Molina Date: Mon, 13 Jul 2015 12:00:57 +0200 Subject: [PATCH] Uncomment setupTips function --- src/sunstone/public/app/utils/tips.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sunstone/public/app/utils/tips.js b/src/sunstone/public/app/utils/tips.js index 5e91052399..32f9a382ca 100644 --- a/src/sunstone/public/app/utils/tips.js +++ b/src/sunstone/public/app/utils/tips.js @@ -4,7 +4,7 @@ define(function(require) { //displays the tip information on mouseover. var _setup = function(context, position) { //For each tip in this context - /*$('.tip', context).each(function() { + $('.tip', context).each(function() { var obj = $(this); obj.removeClass('tip'); var tip = obj.html(); @@ -15,8 +15,8 @@ define(function(require) { } //replace the text with an icon and spans obj.html(''); - });*/ - //$(document).foundation('reflow', 'tooltip'); + }); + context.foundation('reflow', 'tooltip'); } var _html = function(str) {