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
// remove key from object | |
_.mixin({ | |
remove: function(obj, keys){ | |
return _.chain([keys]).flatten().reduce(function(obj, key){ | |
delete obj[key]; | |
return obj; | |
}, obj).value(); | |
} | |
}); |
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
// ==UserScript== | |
// @name drag & drop fotolife uploader | |
// @namespace http://rails2u.com/* | |
// @description フォトライフでローカルファイルから drag & drop でファイルアップロード (HTML5 File API 対応ブラウザのみ) | |
// @include http://f.hatena.ne.jp/*/up* | |
// ==/UserScript== | |
var upForm = document.getElementById('upload'); | |