From 1d16b01a2863ef1268f093b09c082b4f8ab91687 Mon Sep 17 00:00:00 2001
From: Younes El Alami <ShadOoW.ma@gmail.com>
Date: Sat, 10 Jan 2015 12:11:45 +0000
Subject: [PATCH] Changed _this.source.overlays to _this.overlays,
 https://github.com/openseadragon/openseadragon/pull/561/files#r22730318

---
 src/viewer.js | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/viewer.js b/src/viewer.js
index 32a18722..a359a9d9 100644
--- a/src/viewer.js
+++ b/src/viewer.js
@@ -1973,12 +1973,11 @@ function openTileSource( viewer, source ) {
     }
 
     if( _this.preserveOverlays ){
-        _this.source.overlays = _this.currentOverlays;
-    }
-    else{
-        _this.source.overlays = _this.source.overlays || [];
+        _this.overlays = _this.currentOverlays;
     }
 
+    _this.source.overlays = _this.source.overlays || [];
+
     _this.drawer = new $.Drawer({
         viewer:             _this,
         source:             _this.source,