Fix JSHint warnings in javascript files

This commit is contained in:
Saivann 2015-08-21 02:09:37 -04:00
parent 4b950cf928
commit d1efe4d974
5 changed files with 80 additions and 82 deletions

View file

@ -5,11 +5,11 @@
layout: null
---
"use strict"
"use strict";
var zoom = 2;
var minzoom = 1;
if (isMobile()) var zoom = minzoom = 0;
if (isMobile()) zoom = minzoom = 0;
var map = L.map('eventmap', {
'zoom': zoom,
'minZoom': minzoom,