|
|
|
@ -24,65 +24,65 @@ app.cacheBuster = null;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
app.load = function() {
|
|
|
|
|
$('document').ready(function () {
|
|
|
|
|
var url = ajaxify.start(window.location.pathname.slice(1) + window.location.search + window.location.hash, true);
|
|
|
|
|
ajaxify.end(url, app.template);
|
|
|
|
|
app.loadProgressiveStylesheet();
|
|
|
|
|
|
|
|
|
|
handleStatusChange();
|
|
|
|
|
var url = ajaxify.start(window.location.pathname.slice(1) + window.location.search + window.location.hash, true);
|
|
|
|
|
ajaxify.end(url, app.template);
|
|
|
|
|
|
|
|
|
|
if (config.searchEnabled) {
|
|
|
|
|
app.handleSearch();
|
|
|
|
|
}
|
|
|
|
|
handleStatusChange();
|
|
|
|
|
|
|
|
|
|
$('#content').on('click', '#new_topic', function(){
|
|
|
|
|
app.newTopic();
|
|
|
|
|
});
|
|
|
|
|
if (config.searchEnabled) {
|
|
|
|
|
app.handleSearch();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require(['components'], function(components) {
|
|
|
|
|
components.get('user/logout').on('click', app.logout);
|
|
|
|
|
});
|
|
|
|
|
$('#content').on('click', '#new_topic', function(){
|
|
|
|
|
app.newTopic();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Visibility.change(function(e, state){
|
|
|
|
|
if (state === 'visible') {
|
|
|
|
|
app.isFocused = true;
|
|
|
|
|
app.alternatingTitle('');
|
|
|
|
|
} else if (state === 'hidden') {
|
|
|
|
|
app.isFocused = false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
require(['components'], function(components) {
|
|
|
|
|
components.get('user/logout').on('click', app.logout);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
overrides.overrideBootbox();
|
|
|
|
|
overrides.overrideTimeago();
|
|
|
|
|
createHeaderTooltips();
|
|
|
|
|
app.showEmailConfirmWarning();
|
|
|
|
|
|
|
|
|
|
socket.removeAllListeners('event:nodebb.ready');
|
|
|
|
|
socket.on('event:nodebb.ready', function(data) {
|
|
|
|
|
if (!app.cacheBusters || app.cacheBusters['cache-buster'] !== data['cache-buster']) {
|
|
|
|
|
app.cacheBusters = data;
|
|
|
|
|
|
|
|
|
|
app.alert({
|
|
|
|
|
alert_id: 'forum_updated',
|
|
|
|
|
title: '[[global:updated.title]]',
|
|
|
|
|
message: '[[global:updated.message]]',
|
|
|
|
|
clickfn: function() {
|
|
|
|
|
window.location.reload();
|
|
|
|
|
},
|
|
|
|
|
type: 'warning'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
Visibility.change(function(e, state){
|
|
|
|
|
if (state === 'visible') {
|
|
|
|
|
app.isFocused = true;
|
|
|
|
|
app.alternatingTitle('');
|
|
|
|
|
} else if (state === 'hidden') {
|
|
|
|
|
app.isFocused = false;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
require(['taskbar', 'helpers', 'forum/pagination'], function(taskbar, helpers, pagination) {
|
|
|
|
|
taskbar.init();
|
|
|
|
|
overrides.overrideBootbox();
|
|
|
|
|
overrides.overrideTimeago();
|
|
|
|
|
createHeaderTooltips();
|
|
|
|
|
app.showEmailConfirmWarning();
|
|
|
|
|
|
|
|
|
|
// templates.js helpers
|
|
|
|
|
helpers.register();
|
|
|
|
|
socket.removeAllListeners('event:nodebb.ready');
|
|
|
|
|
socket.on('event:nodebb.ready', function(data) {
|
|
|
|
|
if (!app.cacheBusters || app.cacheBusters['cache-buster'] !== data['cache-buster']) {
|
|
|
|
|
app.cacheBusters = data;
|
|
|
|
|
|
|
|
|
|
pagination.init();
|
|
|
|
|
app.alert({
|
|
|
|
|
alert_id: 'forum_updated',
|
|
|
|
|
title: '[[global:updated.title]]',
|
|
|
|
|
message: '[[global:updated.message]]',
|
|
|
|
|
clickfn: function() {
|
|
|
|
|
window.location.reload();
|
|
|
|
|
},
|
|
|
|
|
type: 'warning'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$(window).trigger('action:app.load');
|
|
|
|
|
});
|
|
|
|
|
require(['taskbar', 'helpers', 'forum/pagination'], function(taskbar, helpers, pagination) {
|
|
|
|
|
taskbar.init();
|
|
|
|
|
|
|
|
|
|
// templates.js helpers
|
|
|
|
|
helpers.register();
|
|
|
|
|
|
|
|
|
|
pagination.init();
|
|
|
|
|
|
|
|
|
|
$(window).trigger('action:app.load');
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -539,4 +539,12 @@ app.cacheBuster = null;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
app.loadProgressiveStylesheet = function() {
|
|
|
|
|
var linkEl = document.createElement('link');
|
|
|
|
|
linkEl.rel = 'stylesheet';
|
|
|
|
|
linkEl.href = config.relative_path + '/js-enabled.css';
|
|
|
|
|
|
|
|
|
|
document.head.appendChild(linkEl);
|
|
|
|
|
}
|
|
|
|
|
}());
|
|
|
|
|