e.preventDefault();
var noticeEl = $(this).closest('.notice');
$.get($(this).attr('href'), {ajax: 1}, function (data, textStatus, xhr) {
- noticeEl.replaceWith($('body', data).html());
+ SN.U.NoticeOptionPopup($('body', data).html());
});
return false;
});
},
+ NoticeOptionPopup: function (html) {
+ dialog = $(html).dialog();
+ },
+
/**
* Setup function -- DOES NOT trigger actions immediately.
*
});
},
+ NoticeOptionPopup: function (html) {
+ dialog = $(html).dialog({
+ resizable: false,
+ height: 150,
+ modal: true,
+ });
+ },
+
/**
* Setup function -- DOES NOT trigger actions immediately.
*
$this->script('extlib/jquery-ui/jquery-ui.js');
$this->script('extlib/jquery.cookie.js');
$this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/extlib/json2.js', GNUsocial::isHTTPS()).'"); }');
- $this->script('extlib/jquery.infieldlabel.js');
Event::handle('EndShowJQueryScripts', array($this));
}