何を*見?て-も何-か?思い.出す リローデッド
by
taizooo
2012-02-08 [2012/02/08 16:04:43]
オートページャライズで継ぎ足したページに oembed 適用する
@@ -7,12 +7,16 @@
*/
(function () {
+ var hoge = function(e){
+ $('.thing', e).each(function () {
+ format($(this), $(this).text());
+ });
+ }
+ hoge(document);
document.addEventListener('DOMNodeInserted', function (evt) {
var elm = evt.target;
if (elm.className == 'item') {
- $('.thing', elm).each(function () {
- format($(this), $(this).text())
- });
+ hoge(elm);
}
});
})()
/*
* @title 何を*見?て-も何-か?思い.出す リローデッド
* @description オートページャライズで継ぎ足したページに oembed 適用する
* @include http://ermos-tily.dotcloud.com/*
* @license MIT License
* @require
*/
(function () {
var hoge = function(e){
$('.thing', e).each(function () {
format($(this), $(this).text());
});
}
hoge(document);
document.addEventListener('DOMNodeInserted', function (evt) {
var elm = evt.target;
if (elm.className == 'item') {
hoge(elm);
}
});
})()
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。