bjornd / jvectormap

jvectormap.com
GNU Affero General Public License v3.0
1.38k stars 430 forks source link

multimap.js - Missing semicolon #385

Open joaoeduardo opened 8 years ago

joaoeduardo commented 8 years ago

Hi.

I had some errors while compiling this lib, because the multimap.js file doesn't have a semicolon on last line:

//...
jvm.MultiMap.defaultParams = {
  mapNameByCode: function(code, multiMap){
    return code.toLowerCase()+'_'+multiMap.defaultProjection+'_en';
  },
  mapUrlByCode: function(code, multiMap){
    return 'jquery-jvectormap-data-'+code.toLowerCase()+'-'+multiMap.defaultProjection+'-en.js';
  }
}