Add missing semicolon
This commit is contained in:
@@ -32,7 +32,7 @@ describe('ol.render.Box', function() {
|
||||
expect(obj).to.be.a(ol.render.Box);
|
||||
expect(obj).to.be.a(ol.Disposable);
|
||||
obj.dispose();
|
||||
})
|
||||
});
|
||||
it('creates an absolutely positioned DIV with a className', function() {
|
||||
expect(box.element_).to.be.a(HTMLDivElement);
|
||||
expect(box.element_.style.position).to.be('absolute');
|
||||
|
||||
@@ -165,7 +165,7 @@ describe('ol.render.canvas.Immediate', function() {
|
||||
if (instruction.args) {
|
||||
parts.push('args: [' + instruction.args.map(function(arg) {
|
||||
if (typeof arg === 'number') {
|
||||
return arg.toFixed(9)
|
||||
return arg.toFixed(9);
|
||||
} else {
|
||||
return arg;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user