Add missing semicolon

This commit is contained in:
Frederic Junod
2016-06-09 15:32:58 +02:00
parent 08f8cd0f16
commit 4bf1f56405
33 changed files with 56 additions and 56 deletions
+4 -4
View File
@@ -127,7 +127,7 @@ describe('ol.dom', function() {
// revert mock-ups
goog.userAgent.IE = originalIsIE;
goog.userAgent.isVersionOrHigher = originalIsVersionOrHigher
goog.userAgent.isVersionOrHigher = originalIsVersionOrHigher;
});
it('sets transform origin *only* for IE 9', function() {
@@ -201,7 +201,7 @@ describe('ol.dom', function() {
};
ol.dom.canUseCssTransform = function() {
return true;
}
};
// test
ol.dom.transformElement2D(element, transform);
@@ -224,7 +224,7 @@ describe('ol.dom', function() {
};
ol.dom.canUseCssTransform = function() {
return true;
}
};
// test
ol.dom.transformElement2D(element, transformFloat, 2);
@@ -245,7 +245,7 @@ describe('ol.dom', function() {
};
ol.dom.canUseCssTransform = function() {
return false;
}
};
// test
ol.dom.transformElement2D(element, transform);