소스 검색

Fix: calling _updateLayers when not attached to map

gh-pages
Gregor MacLennan 9 년 전
부모
커밋
1f8f3ead64
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3
    0
      index.js

+ 3
- 0
index.js 파일 보기

@@ -132,6 +132,9 @@ L.Control.SideBySide = L.Control.extend({
132 132
   },
133 133
 
134 134
   _updateLayers: function () {
135
+    if (!this._map) {
136
+      return this
137
+    }
135 138
     var prevLeft = this._leftLayer
136 139
     var prevRight = this._rightLayer
137 140
     this._leftLayer = this._rightLayer = null

Loading…
취소
저장