diff --git a/public/language/en_GB/category.json b/public/language/en_GB/category.json index 79166bd772..aa15153b0b 100644 --- a/public/language/en_GB/category.json +++ b/public/language/en_GB/category.json @@ -8,6 +8,7 @@ "browsing": "browsing", "no_replies": "No one has replied", + "no_new_posts": "No new posts.", "share_this_category": "Share this category", "watch": "Watch", diff --git a/public/src/app.js b/public/src/app.js index 650a509eda..63e6e2399e 100644 --- a/public/src/app.js +++ b/public/src/app.js @@ -381,7 +381,8 @@ app.cacheBuster = null; }; function createHeaderTooltips() { - if (utils.findBootstrapEnvironment() === 'xs') { + var env = utils.findBootstrapEnvironment(); + if (env === 'xs' || env === 'sm') { return; } $('#header-menu li a[title]').each(function() {