Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request ubilabs#135 from cpa99dcs/patch-1
Browse files Browse the repository at this point in the history
Add missing semi-colons.
  • Loading branch information
aemkei committed Jun 17, 2014
2 parents 39ecdb5 + 301d37d commit 7d8228f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.geocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@
};

if (this.options.country){
options.componentRestrictions = {country: this.options.country}
options.componentRestrictions = {country: this.options.country};
}

this.autocomplete = new google.maps.places.Autocomplete(
Expand Down Expand Up @@ -490,7 +490,7 @@
// Prevent against multiple instantiations.
var instance = $.data(this, attribute);
if (!instance) {
instance = new GeoComplete( this, options )
instance = new GeoComplete( this, options );
$.data(this, attribute, instance);
}
});
Expand Down

0 comments on commit 7d8228f

Please sign in to comment.