Merge pull request #4809 from fritruc/4804_Mapillary_photo_overlay_can_t_get_disabled

do not stop mapillary autoplaying if _mlyViewer is not initialized (closes #4804)
This commit is contained in:
Bryan Housel
2018-02-16 09:07:10 -05:00
committed by GitHub

View File

@@ -491,7 +491,7 @@ export default {
hideViewer: function() {
_mlySelectedImage = null;
if (!_mlyFallback) {
if (!_mlyFallback && _mlyViewer) {
_mlyViewer.getComponent('sequence').stop();
}