09/07/27 17:38:51 MiK/DJ6a0
>>93
ありがとうございます。
Popup.Image = {
mouseover: function(aEvent){
var imageURL = this.href;
if((/\.(gif|jpe?g|png)$/i).test(imageURL))
Popup.Image.popupImage.call(this, aEvent, imageURL)
else if(imageURL.match(/\w+\.youtube\.com\/.*[?&]v=([^&]+)/))
Popup.Image.popupYoutube.call(this, aEvent, RegExp.$1);
+ else if(isMatchIvur(imageURL))
+ Popup.Image.popupImage.call(this, aEvent, '/ivur/' + imageURL);
},
こんなふうに追記してみたのですが、うまくいきません。追記方法に何か間違いがあるのでしょうか?ご指摘いただけないでしょうか。お願いします。