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() { _Blog.changeTitle = function() {
var currentTitle = document.title; var currentTitle = document.title;
window.onblur = function() { window.onblur = function() {
document.title = '_(:3 」∠ )_'; document.title = currentTitle;
} }
window.onfocus = function() { window.onfocus = function() {
document.title = currentTitle; document.title = currentTitle;