Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Fastbyte01/KeepIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorGiuseppe Pignataro <rogepix@gmail.com>2019-03-11 17:05:27 +0300
committerGiuseppe Pignataro <rogepix@gmail.com>2019-03-11 17:05:27 +0300
commitd85784c9c95cc7a155729aab5ae6eb47c59148e0 (patch)
tree60842bf630cf89cc4ccf1ff5843bfdca42a8ab0d /assets
parent09740d24898c6d553236c482e64ff5abfdcd164b (diff)
Removed emoji in the tab
Removed the emoji when the tab is on blur and now show the current title
Diffstat (limited to 'assets')
-rw-r--r--assets/js/main.js4
1 files 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
+});