diff options
author | Markus Koch <markus@notsyncing.net> | 2020-06-11 10:54:14 +0200 |
---|---|---|
committer | Markus Koch <markus@notsyncing.net> | 2020-06-11 10:54:14 +0200 |
commit | 134d70dc9fbdbed4f4cd3827295fbbd64a2ee5f2 (patch) | |
tree | 81dd3c4c7b269cb63b903f87bcbc3634857673d4 /htdocs | |
parent | cf5dccbc3a59163feda5d094755b571f6e24e830 (diff) | |
download | lifomapserver-134d70dc9fbdbed4f4cd3827295fbbd64a2ee5f2.tar.gz lifomapserver-134d70dc9fbdbed4f4cd3827295fbbd64a2ee5f2.tar.bz2 lifomapserver-134d70dc9fbdbed4f4cd3827295fbbd64a2ee5f2.zip |
Fix indentation
Diffstat (limited to 'htdocs')
-rw-r--r-- | htdocs/mapscript.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/htdocs/mapscript.js b/htdocs/mapscript.js index d33e9e7..3eccb65 100644 --- a/htdocs/mapscript.js +++ b/htdocs/mapscript.js @@ -580,10 +580,10 @@ L.MyControl = L.Control.extend({ L.DomEvent.on(link, 'mousedown', L.DomEvent.stop); L.DomEvent.on(link, 'mouseup', L.DomEvent.stop); L.DomEvent.on(link, 'click', L.DomEvent.stop) - .on(link, 'click', function () { - window.LAYER = this.options.callback.call(); - }, this); - return container; + .on(link, 'click', function () { + window.LAYER = this.options.callback.call(); + }, this); + return container; } }); |