Skip to content

Commit 5fe65f2

Browse files
committed
src: whitespace sweep
1 parent 9cd574a commit 5fe65f2

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Add any other context about the problem here.
3838

3939
**Environment**
4040
Software version used and hardware type if relevant.
41-
e.g.:
41+
e.g.:
4242

43-
OPNsense 19.1.1 (amd64, OpenSSL).
43+
OPNsense 19.1.1 (amd64, OpenSSL).
4444
Intel® Xeon™ E3-1225V5 3.3Ghz Quad Core
4545
Network Intel® I210-AT

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Before you add a new report, we ask you kindly to acknowledge the following:
1818
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
1919

2020
**Describe the solution you'd like**
21-
A clear and concise description of what you want to happen.
21+
A clear and concise description of what you want to happen.
2222
(e.g. I would like an input field in the `/ui/firewall/alias` which would add .... to ....)
2323

2424
**Describe alternatives you've considered**

src/opnsense/www/js/jquery.bootgrid.js

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*!
1+
/*!
22
* jQuery Bootgrid v1.3.5 - 03/11/2019
33
* Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
44
* Licensed under the MIT license. See LICENSE.txt for more details.
@@ -1876,8 +1876,8 @@ $.fn.extend({
18761876

18771877
_bgBusyAria: function(busy)
18781878
{
1879-
return (busy == null || busy) ?
1880-
this._bgAria("busy", "true") :
1879+
return (busy == null || busy) ?
1880+
this._bgAria("busy", "true") :
18811881
this._bgAria("busy", "false");
18821882
},
18831883

@@ -1888,29 +1888,29 @@ $.fn.extend({
18881888

18891889
_bgEnableAria: function (enable)
18901890
{
1891-
return (enable == null || enable) ?
1892-
this.removeClass("disabled")._bgAria("disabled", "false") :
1891+
return (enable == null || enable) ?
1892+
this.removeClass("disabled")._bgAria("disabled", "false") :
18931893
this.addClass("disabled")._bgAria("disabled", "true");
18941894
},
18951895

18961896
_bgEnableField: function (enable)
18971897
{
1898-
return (enable == null || enable) ?
1899-
this.removeAttr("disabled") :
1898+
return (enable == null || enable) ?
1899+
this.removeAttr("disabled") :
19001900
this.attr("disabled", "disable");
19011901
},
19021902

19031903
_bgShowAria: function (show)
19041904
{
1905-
return (show == null || show) ?
1905+
return (show == null || show) ?
19061906
this.show()._bgAria("hidden", "false") :
19071907
this.hide()._bgAria("hidden", "true");
19081908
},
19091909

19101910
_bgSelectAria: function (select)
19111911
{
1912-
return (select == null || select) ?
1913-
this.addClass("active")._bgAria("selected", "true") :
1912+
return (select == null || select) ?
1913+
this.addClass("active")._bgAria("selected", "true") :
19141914
this.removeClass("active")._bgAria("selected", "false");
19151915
},
19161916

@@ -2000,8 +2000,8 @@ if (!Array.prototype.page)
20002000
{
20012001
var skip = (page - 1) * size,
20022002
end = skip + size;
2003-
return (this.length > skip) ?
2004-
(this.length > end) ? this.slice(skip, end) :
2003+
return (this.length > skip) ?
2004+
(this.length > end) ? this.slice(skip, end) :
20052005
this.slice(skip) : [];
20062006
};
20072007
}
@@ -2090,4 +2090,4 @@ $.fn.bootgrid.noConflict = function ()
20902090
// ============
20912091

20922092
$("[data-toggle=\"bootgrid\"]").bootgrid();
2093-
})(jQuery, window);
2093+
})(jQuery, window);

0 commit comments

Comments
 (0)