src: whitespace sweep

This commit is contained in:
Franco Fichtner 2019-03-14 09:09:45 +01:00
parent 9cd574a78e
commit 5fe65f26ca
3 changed files with 16 additions and 16 deletions

View File

@ -38,8 +38,8 @@ Add any other context about the problem here.
**Environment**
Software version used and hardware type if relevant.
e.g.:
e.g.:
OPNsense 19.1.1 (amd64, OpenSSL).
OPNsense 19.1.1 (amd64, OpenSSL).
Intel® Xeon™ E3-1225V5 3.3Ghz Quad Core
Network Intel® I210-AT

View File

@ -18,7 +18,7 @@ Before you add a new report, we ask you kindly to acknowledge the following:
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
A clear and concise description of what you want to happen.
(e.g. I would like an input field in the `/ui/firewall/alias` which would add .... to ....)
**Describe alternatives you've considered**

View File

@ -1,4 +1,4 @@
/*!
/*!
* jQuery Bootgrid v1.3.5 - 03/11/2019
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
* Licensed under the MIT license. See LICENSE.txt for more details.
@ -1876,8 +1876,8 @@ $.fn.extend({
_bgBusyAria: function(busy)
{
return (busy == null || busy) ?
this._bgAria("busy", "true") :
return (busy == null || busy) ?
this._bgAria("busy", "true") :
this._bgAria("busy", "false");
},
@ -1888,29 +1888,29 @@ $.fn.extend({
_bgEnableAria: function (enable)
{
return (enable == null || enable) ?
this.removeClass("disabled")._bgAria("disabled", "false") :
return (enable == null || enable) ?
this.removeClass("disabled")._bgAria("disabled", "false") :
this.addClass("disabled")._bgAria("disabled", "true");
},
_bgEnableField: function (enable)
{
return (enable == null || enable) ?
this.removeAttr("disabled") :
return (enable == null || enable) ?
this.removeAttr("disabled") :
this.attr("disabled", "disable");
},
_bgShowAria: function (show)
{
return (show == null || show) ?
return (show == null || show) ?
this.show()._bgAria("hidden", "false") :
this.hide()._bgAria("hidden", "true");
},
_bgSelectAria: function (select)
{
return (select == null || select) ?
this.addClass("active")._bgAria("selected", "true") :
return (select == null || select) ?
this.addClass("active")._bgAria("selected", "true") :
this.removeClass("active")._bgAria("selected", "false");
},
@ -2000,8 +2000,8 @@ if (!Array.prototype.page)
{
var skip = (page - 1) * size,
end = skip + size;
return (this.length > skip) ?
(this.length > end) ? this.slice(skip, end) :
return (this.length > skip) ?
(this.length > end) ? this.slice(skip, end) :
this.slice(skip) : [];
};
}
@ -2090,4 +2090,4 @@ $.fn.bootgrid.noConflict = function ()
// ============
$("[data-toggle=\"bootgrid\"]").bootgrid();
})(jQuery, window);
})(jQuery, window);