Removed emoji in the tab

Removed the emoji when the tab is on blur and now show the current title
This commit is contained in:
Giuseppe Pignataro 2019-03-11 15:05:27 +01:00
parent 09740d2489
commit d85784c9c9

View file

@ -22,7 +22,7 @@ jQuery(function($) {
_Blog.changeTitle = function() {
var currentTitle = document.title;
window.onblur = function() {
document.title = '_(:3 」∠ )_';
document.title = currentTitle;
}
window.onfocus = function() {
document.title = currentTitle;
@ -53,4 +53,4 @@ jQuery(function($) {
_Blog.toggleTheme()
_Blog.toggleMobileMenu()
});
});
});