Skip to content
Snippets Groups Projects
Commit c21a3018 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

unused param removed

parent e3515a1f
No related branches found
No related tags found
1 merge request!303Resolve "Legend disappears after one cycle of show"
......@@ -74,7 +74,7 @@ Legend.prototype.hide = function () {
};
Legend.prototype.show = function () {
var maxZIndex = Math.max.apply(null,
$.map($('body *'), function (e, n) {
$.map($('body *'), function (e) {
if ($(e).css('position') !== 'static') {
return parseInt($(e).css('z-index')) || 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment