|
|
|
/* =============================================================
|
|
|
|
* bootstrap3-typeahead.js v3.1.0
|
|
|
|
* https://github.com/bassjobsen/Bootstrap-3-Typeahead
|
|
|
|
* =============================================================
|
|
|
|
* Original written by @mdo and @fat
|
|
|
|
* =============================================================
|
|
|
|
* Copyright 2014 Bass Jobsen @bassjobsen
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the 'License');
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an 'AS IS' BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
* ============================================================ */
|
|
|
|
!function(root,factory){"use strict";"undefined"!=typeof module&&module.exports?module.exports=factory(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],function($){return factory($)}):factory(root.jQuery)}(this,function($){"use strict";var Typeahead=function(element,options){this.$element=$(element),this.options=$.extend({},$.fn.typeahead.defaults,options),this.matcher=this.options.matcher||this.matcher,this.sorter=this.options.sorter||this.sorter,this.select=this.options.select||this.select,this.autoSelect="boolean"==typeof this.options.autoSelect?this.options.autoSelect:!0,this.highlighter=this.options.highlighter||this.highlighter,this.render=this.options.render||this.render,this.updater=this.options.updater||this.updater,this.displayText=this.options.displayText||this.displayText,this.source=this.options.source,this.delay=this.options.delay,this.$menu=$(this.options.menu),this.$appendTo=this.options.appendTo?$(this.options.appendTo):null,this.shown=!1,this.listen(),this.showHintOnFocus="boolean"==typeof this.options.showHintOnFocus?this.options.showHintOnFocus:!1,this.afterSelect=this.options.afterSelect,this.addItem=!1};Typeahead.prototype={constructor:Typeahead,select:function(){var val=this.$menu.find(".active").data("value");if(this.$element.data("active",val),this.autoSelect||val){var newVal=this.updater(val);newVal||(newVal=""),this.$element.val(this.displayText(newVal)||newVal).change(),this.afterSelect(newVal)}return this.hide()},updater:function(item){return item},setSource:function(source){this.source=source},show:function(){var scrollHeight,pos=$.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});scrollHeight="function"==typeof this.options.scrollHeight?this.options.scrollHeight.call():this.options.scrollHeight;var element;return element=this.shown?this.$menu:this.$appendTo?this.$menu.appendTo(this.$appendTo):this.$menu.insertAfter(this.$element),element.css({top:pos.top+pos.height+scrollHeight,left:pos.left}).show(),this.shown=!0,this},hide:function(){return this.$menu.hide(),this.shown=!1,this},lookup:function(query){if("undefined"!=typeof query&&null!==query?this.query=query:this.query=this.$element.val()||"",this.query.length<this.options.minLength)return this.shown?this.hide():this;var worker=$.proxy(function(){$.isFunction(this.source)?this.source(this.query,$.proxy(this.process,this)):this.source&&this.process(this.source)},this);clearTimeout(this.lookupWorker),this.lookupWorker=setTimeout(worker,this.delay)},process:function(items){var that=this;return items=$.grep(items,function(item){return that.matcher(item)}),items=this.sorter(items),items.length||this.options.addItem?(items.length>0?this.$element.data("active",items[0]):this.$element.data("active",null),this.options.addItem&&items.push(this.options.addItem),"all"==this.options.items?this.render(items).show():this.render(items.slice(0,this.options.items)).show()):this.shown?this.hide():this},matcher:function(item){var it=this.displayText(item);return~it.toLowerCase().indexOf(this.query.toLowerCase())},sorter:function(items){for(var item,beginswith=[],caseSensitive=[],caseInsensitive=[];item=items.shift();){var it=this.displayText(item);it.toLowerCase().indexOf(this.query.toLowerCase())?~it.indexOf(this.query)?caseSensitive.push(item):caseInsensitive.push(item):beginswith.push(item)}return beginswith.concat(caseSensitive,caseInsensitive)},highlighter:function(item){var len,leftPart,middlePart,rightPart,strong,html=$("<div></div>"),query=this.query,i=item.toLowerCase().indexOf(query.toLowerCase());if(len=query.length,0===len)return html.text(item).html();for(;i>-1;)leftPart=item.substr(0,i),middlePart=item.substr(i,len),rightPart=item.substr(i+len),strong=$("<strong></strong>").text(middlePart),html.append(document.createTextNode(leftPart)).append(strong),item=rightPart,i=item.toLowerCase().indexOf(query.toLowerCase());return html.append(document.createTextNode(item)).html()},render:function(items){var that=this,self=this,activeFound=!1;return items=$(items).map(function(i,item){var text=self.di
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* jQuery Form Plugin
|
|
|
|
* version: 3.51.0-2014.06.20
|
|
|
|
* Requires jQuery v1.5 or later
|
|
|
|
* Copyright (c) 2014 M. Alsup
|
|
|
|
* Examples and documentation at: http://malsup.com/jquery/form/
|
|
|
|
* Project repository: https://github.com/malsup/form
|
|
|
|
* Dual licensed under the MIT and GPL licenses.
|
|
|
|
* https://github.com/malsup/form#copyright-and-license
|
|
|
|
*/
|
|
|
|
!function(e){"use strict";"function"==typeof define&&define.amd?define(["jquery"],e):e("undefined"!=typeof jQuery?jQuery:window.Zepto)}(function(e){"use strict";function t(t){var r=t.data;t.isDefaultPrevented()||(t.preventDefault(),e(t.target).ajaxSubmit(r))}function r(t){var r=t.target,a=e(r);if(!a.is("[type=submit],[type=image]")){var n=a.closest("[type=submit]");if(0===n.length)return;r=n[0]}var i=this;if(i.clk=r,"image"==r.type)if(void 0!==t.offsetX)i.clk_x=t.offsetX,i.clk_y=t.offsetY;else if("function"==typeof e.fn.offset){var o=a.offset();i.clk_x=t.pageX-o.left,i.clk_y=t.pageY-o.top}else i.clk_x=t.pageX-r.offsetLeft,i.clk_y=t.pageY-r.offsetTop;setTimeout(function(){i.clk=i.clk_x=i.clk_y=null},100)}function a(){if(e.fn.ajaxSubmit.debug){var t="[jquery.form] "+Array.prototype.join.call(arguments,"");window.console&&window.console.log?window.console.log(t):window.opera&&window.opera.postError&&window.opera.postError(t)}}var n={};n.fileapi=void 0!==e("<input type='file'/>").get(0).files,n.formdata=void 0!==window.FormData;var i=!!e.fn.prop;e.fn.attr2=function(){if(!i)return this.attr.apply(this,arguments);var e=this.prop.apply(this,arguments);return e&&e.jquery||"string"==typeof e?e:this.attr.apply(this,arguments)},e.fn.ajaxSubmit=function(t){function r(r){var a,n,i=e.param(r,t.traditional).split("&"),o=i.length,s=[];for(a=0;o>a;a++)i[a]=i[a].replace(/\+/g," "),n=i[a].split("="),s.push([decodeURIComponent(n[0]),decodeURIComponent(n[1])]);return s}function o(a){for(var n=new FormData,i=0;i<a.length;i++)n.append(a[i].name,a[i].value);if(t.extraData){var o=r(t.extraData);for(i=0;i<o.length;i++)o[i]&&n.append(o[i][0],o[i][1])}t.data=null;var s=e.extend(!0,{},e.ajaxSettings,t,{contentType:!1,processData:!1,cache:!1,type:u||"POST"});t.uploadProgress&&(s.xhr=function(){var r=e.ajaxSettings.xhr();return r.upload&&r.upload.addEventListener("progress",function(e){var r=0,a=e.loaded||e.position,n=e.total;e.lengthComputable&&(r=Math.ceil(a/n*100)),t.uploadProgress(e,a,n,r)},!1),r}),s.data=null;var c=s.beforeSend;return s.beforeSend=function(e,r){r.data=t.formData?t.formData:n,c&&c.call(this,e,r)},e.ajax(s)}function s(r){function n(e){var t=null;try{e.contentWindow&&(t=e.contentWindow.document)}catch(r){a("cannot get iframe.contentWindow document: "+r)}if(t)return t;try{t=e.contentDocument?e.contentDocument:e.document}catch(r){a("cannot get iframe.contentDocument: "+r),t=e.document}return t}function o(){function t(){try{var e=n(g).readyState;a("state = "+e),e&&"uninitialized"==e.toLowerCase()&&setTimeout(t,50)}catch(r){a("Server abort: ",r," (",r.name,")"),s(k),j&&clearTimeout(j),j=void 0}}var r=f.attr2("target"),i=f.attr2("action"),o="multipart/form-data",c=f.attr("enctype")||f.attr("encoding")||o;w.setAttribute("target",p),(!u||/post/i.test(u))&&w.setAttribute("method","POST"),i!=m.url&&w.setAttribute("action",m.url),m.skipEncodingOverride||u&&!/post/i.test(u)||f.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"}),m.timeout&&(j=setTimeout(function(){T=!0,s(D)},m.timeout));var l=[];try{if(m.extraData)for(var d in m.extraData)m.extraData.hasOwnProperty(d)&&l.push(e.isPlainObject(m.extraData[d])&&m.extraData[d].hasOwnProperty("name")&&m.extraData[d].hasOwnProperty("value")?e('<input type="hidden" name="'+m.extraData[d].name+'">').val(m.extraData[d].value).appendTo(w)[0]:e('<input type="hidden" name="'+d+'">').val(m.extraData[d]).appendTo(w)[0]);m.iframeTarget||v.appendTo("body"),g.attachEvent?g.attachEvent("onload",s):g.addEventListener("load",s,!1),setTimeout(t,15);try{w.submit()}catch(h){var x=document.createElement("form").submit;x.apply(w)}}finally{w.setAttribute("action",i),w.setAttribute("enctype",c),r?w.setAttribute("target",r):f.removeAttr("target"),e(l).remove()}}function s(t){if(!x.aborted&&!F){if(M=n(g),M||(a("cannot access response document"),t=k),t===D&&x)return x.abort("timeout"),void S.reject(x,"timeout");if(t==k&&x)return x.abort("server abort"),void S.reject(x,"error","server abort");if(M&&M.location.href!=m.iframeSrc||T){g.detachEvent?g.detachEvent("onload",s):g.removeEventListener("load",s,!1);va
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* jQuery PathBrowser
|
|
|
|
*
|
|
|
|
* (c) 2012 SABnzbd Team, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Dual licensed under MIT or GPLv2 licenses
|
|
|
|
* http://en.wikipedia.org/wiki/MIT_License
|
|
|
|
* http://en.wikipedia.org/wiki/GNU_General_Public_License
|
|
|
|
*
|
|
|
|
* Changed by Safihre - 11 Nov 2015
|
|
|
|
*/
|
|
|
|
;(function($) {
|
|
|
|
// Building object
|
|
|
|
function FileBrowser(element) {
|
|
|
|
// Initialize
|
|
|
|
this.element = $(element);
|
|
|
|
this.initialDir = null;
|
|
|
|
this.currentBrowserPath = null;
|
|
|
|
this.currentRequest = null;
|
|
|
|
this.fileBrowserDialog = $('#filebrowser_modal .modal-body');
|
|
|
|
this.fileBrowserTitle = this.element.data('title') || $('label[for="'+this.element.attr('id')+'"]').text() || '';
|
|
|
|
|
|
|
|
// Start
|
|
|
|
this.init()
|
|
|
|
};
|
|
|
|
|
|
|
|
// Adding button
|
|
|
|
FileBrowser.prototype.init = function () {
|
|
|
|
// Self-reference
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Small or big button
|
|
|
|
buttonText = this.element.hasClass('fileBrowserSmall') ? '' : configTranslate.browseText;
|
|
|
|
|
|
|
|
// Add button
|
|
|
|
this.element.addClass('fileBrowserField').after(
|
|
|
|
$('<button class="btn btn-default fileBrowser" type="button"><span class="glyphicon glyphicon-folder-open"></span> '+buttonText+'</button>').click(function () {
|
|
|
|
self.openBrowser();
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open browser-window
|
|
|
|
FileBrowser.prototype.openBrowser = function() {
|
|
|
|
// Self-reference
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// set up the browser and launch the dialog
|
|
|
|
// textbox (not saved) path > textbox (saved) path > none
|
|
|
|
this.initialDir = this.element.val() || this.element.data('initialdir') || '';
|
|
|
|
|
|
|
|
// If there's no seperator, it must be a relative path
|
|
|
|
if(this.initialDir.split(folderSeperator).length < 2 && this.element.data('initialdir')) {
|
|
|
|
this.initialDir = this.element.data('initialdir') + folderSeperator + this.element.val();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Browse
|
|
|
|
this.browse(this.initialDir , folderBrowseUrl);
|
|
|
|
|
|
|
|
// Choose path and close modal
|
|
|
|
$('#filebrowser_modal_accept').click(function() {
|
|
|
|
// Is it a relative path?
|
|
|
|
if(self.currentBrowserPath.indexOf(self.element.data('initialdir')) === 0) {
|
|
|
|
// Remove start
|
|
|
|
self.currentBrowserPath = self.currentBrowserPath.replace(self.element.data('initialdir')+folderSeperator, '');
|
|
|
|
// If it's identical to the initial dir the replacement won't work
|
|
|
|
if(self.currentBrowserPath == self.element.data('initialdir')) {
|
|
|
|
self.currentBrowserPath = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Changed?
|
|
|
|
if(self.element.val() != self.currentBrowserPath) {
|
|
|
|
self.element.val(self.currentBrowserPath);
|
|
|
|
formHasChanged = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hide and stop default action
|
|
|
|
$('#filebrowser_modal').modal('hide');
|
|
|
|
return false;
|
|
|
|
})
|
|
|
|
|
|
|
|
// Use custom title instead of default and open modal
|
|
|
|
$('#filebrowser_modal .modal-header h4').text(this.fileBrowserTitle);
|
|
|
|
$('#filebrowser_modal').modal('show');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
FileBrowser.prototype.browse = function(path, endpoint) {
|
|
|
|
// Self-reference
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
// Nothing changed
|
|
|
|
if (this.currentBrowserPath === path) return;
|
|
|
|
|
|
|
|
// Still loading
|
|
|
|
if (this.currentRequest) this.currentRequest.abort();
|
|
|
|
|
|
|
|
// Get current folders
|
|
|
|
this.currentBrowserPath = path;
|
|
|
|
this.currentRequest = $.getJSON(endpoint, { name: path }, function (data) {
|
|
|
|
// Clean
|
|
|
|
self.fileBrowserDialog.empty();
|
|
|
|
|
|
|
|
// Make list
|
|
|
|
var list = $('<div class="list-group">').appendTo(self.fileBrowserDialog);
|
|
|
|
$.each(data.paths, function (i, entry) {
|
|
|
|
// Title for first one
|
|
|
|
if(i == 0) {
|
|
|
|
self.fileBrowserDialog.prepend($('<h4>').text(entry.current_path))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Regular link
|
|
|
|
link = $('<a class="list-group-item" href="javascript:void(0)" />').click(function () {
|
|
|
|
self.browse(entry.path, endpoint); }
|
|
|
|
).text(entry.name);
|
|
|
|
// Back image
|
|
|
|
if(entry.name == '..') {
|
|
|
|
$('<span class="glyphicon glyphicon-arrow-left"></span> ').prependTo(link);
|
|
|
|
} else {
|
|
|
|
$('<span class="glyphicon glyphicon-folder-open"></span> ').prependTo(link);
|
|
|
|
}
|
|
|
|
// Add to list
|
|
|
|
link.appendTo(list);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we have unique instances
|
|
|
|
$.fn.fileBrowser = function () {
|
|
|
|
return this.each(function () {
|
|
|
|
if (!$.data(this, 'plugin_FileBrowser')) {
|
|
|
|
$.data(this, 'plugin_FileBrowser', new FileBrowser(this));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})(jQuery);
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Config JS
|
|
|
|
*
|
|
|
|
* (c) 2015 SABnzbd Team, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
function config_success() {
|
|
|
|
$('.saveButton').each(function () {
|
|
|
|
$(this).removeAttr("disabled").html('<span class="glyphicon glyphicon-ok"></span> '+configTranslate.saveChanges);
|
|
|
|
});
|
|
|
|
// Let us leave!
|
|
|
|
formWasSubmitted = true;
|
|
|
|
formHasChanged = false;
|
|
|
|
}
|
|
|
|
function config_failure() {
|
|
|
|
$('.saveButton').each(function () {
|
|
|
|
$(this).removeAttr("disabled").html('<span class="glyphicon glyphicon-remove"></span> '+configTranslate.failed);
|
|
|
|
});
|
|
|
|
// Can't go yet..
|
|
|
|
formWasSubmitted = false;
|
|
|
|
}
|
|
|
|
function do_restart() {
|
|
|
|
// Show overlay
|
|
|
|
$('.main-restarting').show()
|
|
|
|
|
|
|
|
// What template
|
|
|
|
var arrPath = window.location.pathname.split('/');
|
|
|
|
var urlPath = (arrPath[1] == "m" || arrPath[2] == "m") ? '/sabnzbd/m/' : '/sabnzbd/';
|
|
|
|
|
|
|
|
// Are we on settings page?
|
|
|
|
if(!$('body').hasClass('General')) {
|
|
|
|
// Same as before, with fall-back in case location.origin is not supported (<IE9)
|
|
|
|
var urlTotal = window.location.origin ? (window.location.origin + urlPath) : window.location;
|
|
|
|
} else {
|
|
|
|
// Protocol and port depend on http(s) setting
|
|
|
|
if($('#enable_https').is(':checked') && window.location.protocol == 'https:') {
|
|
|
|
// Https on and we visited this page from HTTPS
|
|
|
|
var urlProtocol = 'https:'
|
|
|
|
var urlPort = $('#https_port').val();
|
|
|
|
} else {
|
|
|
|
// Regular
|
|
|
|
var urlProtocol = 'http:';
|
|
|
|
var urlPort = $('#port').val();
|
|
|
|
}
|
|
|
|
|
|
|
|
// We cannot make a good guess for the IP, so at least we assume that stays the same
|
|
|
|
var urlTotal = urlProtocol + '//' + window.location.hostname + ':' + urlPort + urlPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show where we are going to connect
|
|
|
|
$('.main-restarting .restarting-url').text(urlTotal)
|
|
|
|
|
|
|
|
// Initiate restart
|
|
|
|
$.ajax({ url: '../../config/restart?session=' + sabSession,
|
|
|
|
complete: function() {
|
|
|
|
// Keep counter of failures
|
|
|
|
var failureCounter = 0;
|
|
|
|
|
|
|
|
// Now we try untill we can connect
|
|
|
|
var refreshInterval = setInterval(function() {
|
|
|
|
$.ajax({ url: urlTotal,
|
|
|
|
success: function() {
|
|
|
|
// Back to base
|
|
|
|
location.href = urlTotal;
|
|
|
|
},
|
|
|
|
error: function(status, text) {
|
|
|
|
failureCounter = failureCounter+1;
|
|
|
|
// Too many failuers and we give up
|
|
|
|
if(failureCounter >= 7) {
|
|
|
|
// If the port has changed 'Access-Control-Allow-Origin' header will not allow
|
|
|
|
// us to check if the server is back up. So after 7 failures we redirect
|
|
|
|
// anyway in the hopes it works anyway..
|
|
|
|
location.href = urlTotal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}, 5000)
|
|
|
|
|
|
|
|
// Exception if we go from HTTPS to HTTP
|
|
|
|
// (this is not allowed by browsers and all of the above will be ignored)
|
|
|
|
if(window.location.protocol != urlProtocol) {
|
|
|
|
// Saftey redirect after 40 sec
|
|
|
|
setTimeout(function() {
|
|
|
|
location.href = urlTotal;
|
|
|
|
}, 40*1000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
/**
|
|
|
|
Restart function
|
|
|
|
**/
|
|
|
|
$('.sabnzbd_restart').click(function () {
|
|
|
|
$('.sabnzbd_restart').each(function () {
|
|
|
|
$(this).attr("disabled", "disabled");
|
|
|
|
});
|
|
|
|
if (confirm(configTranslate.explainRestart.replace(/\<br(\s*\/|)\>/g, '\n'))) {
|
|
|
|
$(this).attr("value", configTranslate.wizzardRestart);
|
|
|
|
// Let us leave!
|
|
|
|
formWasSubmitted = true;
|
|
|
|
do_restart();
|
|
|
|
}
|
|
|
|
$('.sabnzbd_restart').each(function () {
|
|
|
|
$(this).removeAttr("disabled");
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
Submit the form
|
|
|
|
**/
|
|
|
|
$('.fullform').ajaxForm({
|
|
|
|
datatype: 'json',
|
|
|
|
beforeSubmit: function () {
|
|
|
|
$('.saveButton').each(function () {
|
|
|
|
$(this).attr("disabled", "disabled").html('<span class="glyphicon glyphicon-transfer"></span> ' + configTranslate.saving);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
success: function (json) {
|
|
|
|
if (json.error) {
|
|
|
|
$('#config_err_msg').text(json.error);
|
|
|
|
setTimeout(config_failure, 1000);
|
|
|
|
} else if(json.value && json.value.restart_req) {
|
|
|
|
// Trigger restart question
|
|
|
|
if(confirm(configTranslate.needRestart + "\n" + configTranslate.buttonRestart + " SABnzbd?")) {
|
|
|
|
// No more questions
|
|
|
|
do_restart();
|
|
|
|
} else {
|
|
|
|
$('#config_err_msg').text(" ");
|
|
|
|
setTimeout(config_success, 1000);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$('#config_err_msg').text(" ");
|
|
|
|
setTimeout(config_success, 1000);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
error: function () {
|
|
|
|
setTimeout(config_failure, 1000);
|
|
|
|
},
|
|
|
|
timeout: 3000
|
|
|
|
});
|
|
|
|
|
|
|
|
/**
|
|
|
|
Form changes tracking
|
|
|
|
**/
|
|
|
|
$(document).on("submit", "form", function(event){
|
|
|
|
// Let us leave!
|
|
|
|
formWasSubmitted = true;
|
|
|
|
formHasChanged = false;
|
|
|
|
});
|
|
|
|
$(document).on('change', 'form input[type!="submit"][type!="button"], form select, form textarea', function (e) {
|
|
|
|
formHasChanged = true;
|
|
|
|
formWasSubmitted = false;
|
|
|
|
});
|
|
|
|
window.onbeforeunload = function (e) {
|
|
|
|
if (formHasChanged && !formWasSubmitted) {
|
|
|
|
var message = configTranslate.confirmLeave, e = e || window.event;
|
|
|
|
if (e) {
|
|
|
|
e.returnValue = message;
|
|
|
|
}
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fix for touch devices needing double click on the menu
|
|
|
|
$('.navbar-nav li a').on('touchstart', function(e) {
|
|
|
|
$(this).click()
|
|
|
|
})
|
|
|
|
|
|
|
|
// Add hover to checkboxes (can't do it with CSS)
|
|
|
|
$('input[type="checkbox"]').siblings('label').addClass('config-hover')
|
|
|
|
$('input[type="checkbox"]').parents('label').addClass('config-hover')
|
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Takes the inputs-elements found in the current selector
|
|
|
|
* and extracts the values into the provided data-object.
|
|
|
|
*/
|
|
|
|
$.fn.extractFormDataTo = function(target) {
|
|
|
|
var inputs = $("input[type != 'submit'][type != 'button']", this);
|
|
|
|
|
|
|
|
// could use .serializeArray() but that omits unchecked items
|
|
|
|
inputs.each(function (i,elem) {
|
|
|
|
target[elem.name] = elem.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|