Make javascript XHR timeout a variable.

SN.V.xhrTimeout = [time in milliseconds];
This commit is contained in:
Mikael Nordfeldth 2016-03-01 13:10:18 +01:00
parent da34491c59
commit 7862b853bf
2 changed files with 7 additions and 4 deletions

View File

@ -57,6 +57,7 @@ var SN = { // StatusNet
},
V: { // Variables
// These get set on runtime via inline scripting, so don't put anything here.
},
/**
@ -358,7 +359,7 @@ var SN = { // StatusNet
form.ajaxForm({
dataType: 'xml',
timeout: '60000',
timeout: SN.V.xhrTimeout,
beforeSend: function (formData) {
if (form.find('.notice_data-text:first').val() == '') {
form.addClass(SN.C.S.Warning);

View File

@ -492,10 +492,12 @@ class Action extends HTMLOutputter // lawsuit
if (Event::handle('StartScriptVariables', array($this, &$vars))) {
$vars['urlNewNotice'] = common_local_url('newnotice');
$vars['xhrTimeout'] = ini_get('max_execution_time')*1000; // milliseconds
Event::handle('EndScriptVariables', array($this, &$vars));
}
if (!empty($vars)) {
$this->inlineScript('SN.V = ' . json_encode($vars));
}
$this->inlineScript('SN.V = ' . json_encode($vars) . ';');
return $vars;
}