Skip to content

Commit

Permalink
cleanup of 3527666 (jshint is not complaining about that with our con…
Browse files Browse the repository at this point in the history
…fig)
  • Loading branch information
brunob committed Jun 16, 2014
1 parent 4df40b0 commit 7be84a4
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions layer/vector/KML.js
Expand Up @@ -190,13 +190,8 @@ L.Util.extend(L.KML, {
el = place.getElementsByTagName('styleUrl');
for (i = 0; i < el.length; i++) {
var url = el[i].childNodes[0].nodeValue;
for (var a in style[url])
{
// for jshint
if (true)
{
options[a] = style[url][a];
}
for (var a in style[url]) {
options[a] = style[url][a];
}
}
var layers = [];
Expand Down

0 comments on commit 7be84a4

Please sign in to comment.