forked from GNUsocial/gnu-social
jquery infieldlabel.js removed from script list
This commit is contained in:
parent
bc1d667784
commit
be15ab47dc
14
js/util.js
14
js/util.js
@ -591,12 +591,16 @@ var SN = { // StatusNet
|
||||
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.
|
||||
*
|
||||
@ -795,6 +799,14 @@ var SN = { // StatusNet
|
||||
});
|
||||
},
|
||||
|
||||
NoticeOptionPopup: function (html) {
|
||||
dialog = $(html).dialog({
|
||||
resizable: false,
|
||||
height: 150,
|
||||
modal: true,
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Setup function -- DOES NOT trigger actions immediately.
|
||||
*
|
||||
|
@ -418,7 +418,6 @@ class Action extends HTMLOutputter // lawsuit
|
||||
$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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user