mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-15 10:16:12 +01:00
don't bother firing hooks received by js unless a listener exists
This commit is contained in:
@@ -5,7 +5,7 @@ define(['uploader'], function(uploader) {
|
||||
Settings.prepare();
|
||||
};
|
||||
|
||||
Settings.prepare = function() {
|
||||
Settings.prepare = function(callback) {
|
||||
// Come back in 125ms if the config isn't ready yet
|
||||
if (!app.config) {
|
||||
setTimeout(function() {
|
||||
@@ -117,6 +117,10 @@ define(['uploader'], function(uploader) {
|
||||
$(this).tab('show');
|
||||
return false;
|
||||
});
|
||||
|
||||
if (typeof callback === 'function') {
|
||||
callback();
|
||||
}
|
||||
};
|
||||
|
||||
Settings.remove = function(key) {
|
||||
|
||||
Reference in New Issue
Block a user