// onLoad Event Ãß°¡
digitalsme.onLoadAttachEvent(function () {
randomProductAdminVote.display();
setInterval("randomProductAdminVote.display()", 60000);//60ÃÊ¿¡ Çѹø ·£´ýÇÏ°Ô ...
});
// ·£´ý Ãßõ »óǰ
var randomProductAdminVote = {
over : false,
display : function () {
if (this.over) return false;
// Request URL ¼³Á¤
var ajaxURL = '/getRandomProductAdminVote.do';
new Ajax.Request(
ajaxURL,
{
onComplete: function(transport) {
var result = transport.responseText.trim().evalJSON();
var txt = '';
var template = '';
template += "
\n";
template += "
\n";
template += "
\n";
template += "
#{productName}
\n";
template += "
\n";
template += "
\n";
template += "
\n";
template += "
\n";
template += "
\n";
template = new Template(template);
for(var i=0; i\n";
txt += template.evaluate({
boardTitle : result[i].boardTitle,
body : result[i].body.removeTag_cut(25),
productName : result[i].productName.cut(15),
seqId : result[i].seqId,
userId : result[i].userId,
userSeq : result[i].userSeq,
photoUrl : result[i].photoUrl ? "http://cafe.digitalsme.com"+result[i].photoUrl : '/_common/_img/noimg_95x72.gif'
});
}
$('productAdminVote').innerHTML = txt;
}
}
);
}
}