resizable() jQuery UI 関数が img で機能しないのはなぜでしょうか。 http://impress-builder.herokuapp.com/home
ここにコードがあります:https://github.com/lipenco/impress.js-app
function setResizable(){
$( ".resizable" ).resizable();
}
$(document).on('click', 'img', function(event){
$(this).addClass('resizable');
$(this).css("position" ,"absolute")
setResizable();
return false;
});