Use === and !== for comparisons with 0

This commit is contained in:
Tom Payne
2013-05-28 16:07:48 +02:00
parent c0cfc7872e
commit 11672db967
6 changed files with 6 additions and 6 deletions

View File

@@ -792,7 +792,7 @@ ol.Map.prototype.renderFrame_ = function(time) {
var i, ii, view2DState;
if (this.freezeRenderingCount_ != 0) {
if (this.freezeRenderingCount_ !== 0) {
return;
}