2012-10-03 22:07:04 +02:00
|
|
|
|
// Miscellaneous early setup.
|
|
|
|
|
|
|
|
|
|
$(function () {
|
2017-03-09 02:34:45 +01:00
|
|
|
|
if (util.is_mobile()) {
|
2017-05-11 20:01:56 +02:00
|
|
|
|
// if the client is mobile, disable websockets for message sending
|
|
|
|
|
// (it doesn't work on iOS for some reason).
|
2017-03-09 02:34:45 +01:00
|
|
|
|
page_params.use_websockets = false;
|
2017-05-11 20:01:56 +02:00
|
|
|
|
// Also disable the tutorial; it's ugly on mobile.
|
|
|
|
|
page_params.needs_tutorial = false;
|
2017-03-09 02:34:45 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 07:05:36 +01:00
|
|
|
|
page_params.page_load_time = new Date().getTime();
|
|
|
|
|
|
2012-10-03 22:07:04 +02:00
|
|
|
|
// Display loading indicator. This disappears after the first
|
2014-01-30 20:29:00 +01:00
|
|
|
|
// get_events completes.
|
2014-01-14 17:42:46 +01:00
|
|
|
|
if (page_params.have_initial_messages && !page_params.needs_tutorial) {
|
2017-04-05 03:55:28 +02:00
|
|
|
|
loading.make_indicator($('#page_loading_indicator'), {text: 'Loading...', abs_positioned: true});
|
2013-06-27 22:18:28 +02:00
|
|
|
|
} else if (!page_params.needs_tutorial) {
|
2014-03-13 16:47:25 +01:00
|
|
|
|
$('#first_run_message').show();
|
2012-10-03 23:22:51 +02:00
|
|
|
|
}
|
2017-07-27 21:40:26 +02:00
|
|
|
|
|
|
|
|
|
// This is an issue fix where in jQuery v3 the result of outerHeight on a node
|
|
|
|
|
// that doesn’t exist is now “undefined” rather than “null”, which means it
|
|
|
|
|
// will no longer cast to a Number but rather NaN. For this, we create the
|
|
|
|
|
// `safeOuterHeight` and `safeOuterWidth` functions to safely return a result
|
|
|
|
|
// (or 0).
|
|
|
|
|
$.fn.safeOuterHeight = function () {
|
|
|
|
|
return $(this).outerHeight.apply(this, arguments) || 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$.fn.safeOuterWidth = function () {
|
|
|
|
|
return $(this).outerWidth.apply(this, arguments) || 0;
|
|
|
|
|
};
|
|
|
|
|
|
2012-11-21 00:16:09 +01:00
|
|
|
|
// For some reason, jQuery wants this to be attached to an element.
|
2016-08-24 22:11:37 +02:00
|
|
|
|
$(document).ajaxError(function (event, xhr) {
|
2012-11-21 00:16:09 +01:00
|
|
|
|
if (xhr.status === 401) {
|
|
|
|
|
// We got logged out somehow, perhaps from another window or a session timeout.
|
|
|
|
|
// We could display an error message, but jumping right to the login page seems
|
|
|
|
|
// smoother and conveys the same information.
|
2013-11-13 21:31:09 +01:00
|
|
|
|
window.location.replace(page_params.login_page);
|
2012-11-21 00:16:09 +01:00
|
|
|
|
}
|
|
|
|
|
});
|
2013-04-04 00:55:36 +02:00
|
|
|
|
|
2014-03-13 16:06:14 +01:00
|
|
|
|
if (typeof $ !== 'undefined') {
|
|
|
|
|
$.fn.expectOne = function () {
|
|
|
|
|
if (blueslip && this.length !== 1) {
|
|
|
|
|
blueslip.error("Expected one element in jQuery set, " + this.length + " found");
|
|
|
|
|
}
|
|
|
|
|
return this;
|
|
|
|
|
};
|
2017-03-01 01:31:33 +01:00
|
|
|
|
|
|
|
|
|
$.fn.within = function (sel) {
|
2018-06-06 18:19:09 +02:00
|
|
|
|
return $(this).is(sel) || $(this).closest(sel).length;
|
2017-03-01 01:31:33 +01:00
|
|
|
|
};
|
2014-03-13 16:06:14 +01:00
|
|
|
|
}
|
2018-06-14 18:16:02 +02:00
|
|
|
|
transmit.initialize();
|
2012-10-03 22:07:04 +02:00
|
|
|
|
});
|