diff --git a/UPGRADING.md b/UPGRADING.md
new file mode 100644
index 000000000..f709ac161
--- /dev/null
+++ b/UPGRADING.md
@@ -0,0 +1,36 @@
+Upgrading Guide
+=========================
+
+Upgrading from 1.x to 2.x
+-------------------------
+Version 2 includes a breaking change to the DOM structure of the Preview element.
+
+In version 1, the `.bp-navigate` buttons were siblings with the `.bp` container div
+```
+
+ ...
+
+
+
+```
+But in version 2, the buttons are now inside a new container div `.bp-content`.
+```
+
+
+
+
+
+
+```
+
+`.bp-content` is also the new point in which the various viewers will be dynamically inserted as children, i.e. `.bp-doc`, `.bp-image`, etc...
+
+This change in structure is to account for the new thumbnails sidebar which will appear to the left of the viewer content.
diff --git a/src/i18n/en-US.properties b/src/i18n/en-US.properties
index 43c7a421d..4f6dae52c 100644
--- a/src/i18n/en-US.properties
+++ b/src/i18n/en-US.properties
@@ -34,6 +34,8 @@ loading_preview=Loading Preview...
download_file=Download File
# Text shown when a text file has been truncated due to size limits.
text_truncated=This file has been truncated due to size limits. Please download to view the whole file.
+# Button tooltip to toggle Thumbnails Sidebar
+toggle_thumbnails=Toggle thumbnails
# Error messages
# Default preview error message
diff --git a/src/index.html b/src/index.html
index b1f912fe3..85eb465ff 100644
--- a/src/index.html
+++ b/src/index.html
@@ -57,6 +57,10 @@
+
+
+
+
@@ -77,9 +81,6 @@
// Cache it in local storage
localStorage.setItem(selector, value)
-
- // Attempt to load Preview
- loadPreview();
}
function loadPreview(options) {
@@ -102,6 +103,7 @@
// Try to load all properties from storage on page load
setProperty('token');
setProperty('fileid');
+ loadPreview();