From d85784c9c95cc7a155729aab5ae6eb47c59148e0 Mon Sep 17 00:00:00 2001 From: Giuseppe Pignataro Date: Mon, 11 Mar 2019 15:05:27 +0100 Subject: [PATCH] Removed emoji in the tab Removed the emoji when the tab is on blur and now show the current title --- assets/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/js/main.js b/assets/js/main.js index 7e04152..e4d0027 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -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() }); -}); \ No newline at end of file +});