1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 21:57:51 +02:00

Move bootstrap to core. Removed tipsy (replaced by tooltip)

This commit is contained in:
Cameron
2012-11-28 13:25:41 -08:00
parent b261320e76
commit 250ac74fbd
20 changed files with 897 additions and 9318 deletions

View File

@@ -13,7 +13,7 @@ $(document).ready(function()
return;
}
$(this).tipsy({opacity:1.0,fade:true});
$(this).tooltip({opacity:1.0,fade:true});
// $(this).css( 'cursor', 'pointer' )
});
@@ -25,13 +25,13 @@ $(document).ready(function()
var t = $(this).nextAll(".field-help");
t.hide();
// alert('hello');
$(this).tipsy({title: function() {
$(this).tooltip({title: function() {
var tip = t.text();
return tip;
},
fade: true,
html: true,
gravity: 'w'
placement: 'right'
});
});