Skip to content

Commit

Permalink
Version 18.40 [hot-fix #700]
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Rostovtsev committed Mar 29, 2017
1 parent 6187efc commit 538dc3f
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 4 deletions.
12 changes: 12 additions & 0 deletions unauthenticated/css/authentic.css
Original file line number Diff line number Diff line change
Expand Up @@ -10302,4 +10302,16 @@ html[data-background-style='nightRider'] #sidebar ul.user-links li:not(.menu-con

html[data-background-style='nightRider'] .info-container .graph-container>.graph>.description {
color: #222
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
.panel .panel-heading .panel-title a:before,
td .opener_trigger[id]:before,
.panel .panel-heading .panel-title a[aria-expanded='true']:before,
td .opener_trigger.opener_container_opened[id]:before,
a.opener_extra_container_a_style:before,
a.opener_extra_container_a_style.opener_container_opened:before {
display: none
}
}
2 changes: 1 addition & 1 deletion unauthenticated/css/authentic.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion unauthenticated/css/bundle.min.css

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions unauthenticated/js/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,25 @@ if (typeof localStorage === "object") {
$_v__ls__a = 0
}
}
if (!String.prototype.endsWith) {
String.prototype.endsWith = function(c, b) {
var a = this.toString();
if (typeof b !== "number" || !isFinite(b) || Math.floor(b) !== b || b > a.length) {
b = a.length
}
b -= c.length;
var d = a.lastIndexOf(c, b);
return d !== -1 && d === b
}
}
if (!String.prototype.startsWith) {
if (!String.prototype.startsWith) {
String.prototype.startsWith = function(b, a) {
a = a || 0;
return this.indexOf(b, a) === a
}
}
}
$_v__ls__a ? _v__ls__a = "" : _v__ls__a = " hidden";

function n___p__f(b) {
Expand Down
2 changes: 1 addition & 1 deletion unauthenticated/js/init.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.40-git-201703281630
18.40-git-201703291322

0 comments on commit 538dc3f

Please sign in to comment.