Add missing semicolons noted by jslint

Taken from a patch by Lex Hider on the mailing list
This commit is contained in:
Dan Winship
2010-03-15 09:50:05 -04:00
parent 543a41bfea
commit 3ce89e3c80
16 changed files with 52 additions and 52 deletions

View File

@@ -59,7 +59,7 @@ PlaceInfo.prototype = {
isRemovable: function() {
return false;
}
}
};
function PlaceDeviceInfo(mount) {
this._init(mount);
@@ -99,7 +99,7 @@ PlaceDeviceInfo.prototype = {
_removeFinish: function(o, res, data) {
this._mount.unmount_finish(res);
}
}
};
function PlacesManager() {
@@ -581,4 +581,4 @@ PlaceSearchProvider.prototype = {
let places = previousResults.map(function (id) { return Main.placesManager.lookupPlaceById(id); });
return this._searchPlaces(places, terms);
}
}
};