Created
August 20, 2017 14:27
-
-
Save wozozo/a3bf5bab04448180544f94464a7853a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var baseURL = 'https://b.hatena.ne.jp'; | |
var redirect = function(qArgs) { | |
var url = baseURL + '/add?b2=1' + ( qArgs || '' ) + '&url=' + encodeURIComponent(location.href); | |
location.href = url; | |
} | |
if (document.getElementsByTagName('frameset').length) { | |
return redirect('&frame=1'); | |
} | |
if (window.Hatena && | |
window.Hatena.Bookmark && | |
window.Hatena.Bookmark.BookmarkLet && | |
window.Hatena.Bookmark.BookmarkLet.base && | |
window.Hatena.Bookmark.BookmarkLet.instance) { | |
window.Hatena.Bookmark.BookmarkLet.instance.show(true); | |
return; | |
} | |
var head; | |
try { | |
head = document.getElementsByTagName('head')[0]; | |
} catch(e) { | |
return redirect(); | |
} | |
if (!head) return redirect(); | |
var scripts = {}; | |
var loadScript = function(url) { | |
if (scripts[url]) return; | |
scripts[url] = true; | |
var script = document.createElement("script"); | |
script.charset="UTF-8"; | |
script.src = url; | |
setTimeout( function() { | |
head.appendChild(script); | |
}, 1); | |
} | |
var loadTen = function() { | |
loadScript('https://www.hatena.ne.jp/js/Ten/Ten.js'); | |
if (typeof Ten == 'undefined') { | |
setTimeout(loadTen, 20); | |
} else { | |
loadBookmark(); | |
} | |
}; | |
var bURL = baseURL + '/js/Hatena/Bookmark/LetLoader.js?v=1.0&' + (new Date).getTime(); | |
var loadBookmark = function() { | |
loadScript(bURL); | |
if (window.Hatena && | |
window.Hatena.Bookmark && | |
window.Hatena.Bookmark.BookmarkLet && | |
window.Hatena.Bookmark.BookmarkLet.base) | |
{ | |
window.Hatena.Bookmark.BookmarkLet.baseURL = baseURL; | |
new Hatena.Bookmark.BookmarkLet; | |
} else { | |
setTimeout(loadBookmark, 20); | |
} | |
}; | |
if (typeof Ten == 'undefined') { | |
loadTen(); | |
} else { | |
loadBookmark(); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment