Skip to content

Commit

Permalink
Firefox + Scripish で動作させた際に console.log プロパティへの代入の違反が発生していたため修正したコードに…
Browse files Browse the repository at this point in the history
…不備があったため再修正しました
  • Loading branch information
poochin committed Feb 24, 2013
1 parent abed793 commit dbfdb41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions userscript/tumblr_tornado.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name Tumblr Tornado
// @namespace https://github.com/poochin
// @version 1.2.9.2
// @version 1.2.9.3
// @description Tumblr にショートカットを追加するユーザスクリプト
// @include http://www.tumblr.com/dashboard
// @include http://www.tumblr.com/dashboard?oauth_token=*
Expand Down Expand Up @@ -383,7 +383,7 @@
"}",
].join('\n');

if (typeof console) {
if (typeof console == 'undefined') {
console = {log: function(){}};
}

Expand Down

0 comments on commit dbfdb41

Please sign in to comment.