9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
window.afterRender = function()
|
|
{
|
|
$('.editSnapshot').each(function()
|
|
{
|
|
$(this).attr('onclick', "window.parent.editSnapshot('" + $(this).attr('href') + "')");
|
|
$(this).attr('href', '###');
|
|
});
|
|
}
|