Remove jshint -W069 tags in source code

The check in already disabled in .jshintrc
This commit is contained in:
Frederic Junod
2015-10-21 16:15:50 +02:00
parent 519e7976cd
commit a84db3add6
3 changed files with 0 additions and 10 deletions

View File

@@ -49,10 +49,8 @@ var displayCountryInfo = function(coordinate) {
// info.innerHTML = Mustache.render(gridSource.getTemplate(), data);
mapElement.style.cursor = data ? 'pointer' : '';
if (data) {
/* jshint -W069 */
flagElement.src = 'data:image/png;base64,' + data['flag_png'];
nameElement.innerHTML = data['admin'];
/* jshint +W069 */
}
infoOverlay.setPosition(data ? coordinate : undefined);
});