remove debug messages

This commit is contained in:
Hendrik Leppelsack 2015-07-06 13:27:24 +02:00
parent 8621d176db
commit 00b97dfbb1

View file

@ -1757,14 +1757,12 @@ jQuery.fn.tipsy = function(argument) {
trigger: 'hover',
html: false
};
console.log(argument);
// tooltip direction
if(argument.gravity) {
switch(argument.gravity) {
case 'n':
case 'nw':
case 'ne':
console.log('bottom');
options.placement='bottom';
break;
case 's':
@ -1773,7 +1771,6 @@ jQuery.fn.tipsy = function(argument) {
options.placement='top';
break;
case 'w':
console.log('right');
options.placement='right';
break;
case 'e':