Add a missing semi colon and make one line < 80 chars

This commit is contained in:
Mattias Bengtsson 2012-12-12 00:01:37 +01:00
parent 30a3edb393
commit e475c04eaa

View File

@ -10,7 +10,7 @@ describe("Map", function () {
map.setView([0, 0], 1);
expect(spy).toHaveBeenCalled();
})
});
});
describe("when the map has already been loaded", function () {
@ -27,7 +27,8 @@ describe("Map", function () {
});
describe("#getBounds", function () {
it("is safe to call from within a moveend callback during initial load (#1027)", function () {
it("is safe to call from within a moveend callback during initial "
+ "load (#1027)", function () {
var c = document.createElement('div'),
map = L.map(c);