@martyalicante @a5mith  hopefully finally fixed :)
v1.18.x
psychobunny 10 years ago
parent ca1e4bd328
commit 0be363d220

@ -175,18 +175,22 @@ app.cacheBuster = null;
app.createUserTooltips = function(els) { app.createUserTooltips = function(els) {
els = els || $('body'); els = els || $('body');
els.find('img[title].teaser-pic,img[title].user-img,div.user-icon,span.user-icon').each(function() { els.find('img[title].teaser-pic,img[title].user-img,div.user-icon,span.user-icon').each(function() {
$(this).tooltip({ if (!utils.isTouchDevice()) {
placement: 'top', $(this).tooltip({
title: $(this).attr('title') placement: 'top',
}); title: $(this).attr('title')
});
}
}); });
}; };
app.createStatusTooltips = function() { app.createStatusTooltips = function() {
$('body').tooltip({ if (!utils.isTouchDevice()) {
selector:'.fa-circle.status', $('body').tooltip({
placement: 'top' selector:'.fa-circle.status',
}); placement: 'top'
});
}
}; };
app.replaceSelfLinks = function(selector) { app.replaceSelfLinks = function(selector) {
@ -332,21 +336,27 @@ app.cacheBuster = null;
return; return;
} }
$('#header-menu li a[title]').each(function() { $('#header-menu li a[title]').each(function() {
$(this).tooltip({ if (!utils.isTouchDevice()) {
placement: 'bottom', $(this).tooltip({
title: $(this).attr('title') placement: 'bottom',
}); title: $(this).attr('title')
});
}
}); });
$('#search-form').parent().tooltip({ if (!utils.isTouchDevice()) {
placement: 'bottom', $('#search-form').parent().tooltip({
title: $('#search-button i').attr('title') placement: 'bottom',
}); title: $('#search-button i').attr('title')
});
}
$('#user_dropdown').tooltip({ if (!utils.isTouchDevice()) {
placement: 'bottom', $('#user_dropdown').tooltip({
title: $('#user_dropdown').attr('title') placement: 'bottom',
}); title: $('#user_dropdown').attr('title')
});
}
} }
app.handleSearch = function () { app.handleSearch = function () {

@ -237,6 +237,10 @@
return ((nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1) && !(nua.indexOf('Chrome') > -1)); return ((nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1) && !(nua.indexOf('Chrome') > -1));
}, },
isTouchDevice: function() {
return 'ontouchstart' in document.documentElement;
},
findBootstrapEnvironment: function() { findBootstrapEnvironment: function() {
//http://stackoverflow.com/questions/14441456/how-to-detect-which-device-view-youre-on-using-twitter-bootstrap-api //http://stackoverflow.com/questions/14441456/how-to-detect-which-device-view-youre-on-using-twitter-bootstrap-api
var envs = ['xs', 'sm', 'md', 'lg'], var envs = ['xs', 'sm', 'md', 'lg'],

Loading…
Cancel
Save