Commit bd3b5cbb authored by Sean Hammond's avatar Sean Hammond

Set isSidebar to false on the stream

Fixes a bug that crept in during the annotation.coffee -> annotation.js
translation.
parent db2433dc
...@@ -607,7 +607,7 @@ function annotation($document, features) { ...@@ -607,7 +607,7 @@ function annotation($document, features) {
var counter = controllers[3]; var counter = controllers[3];
attrs.$observe('isSidebar', function(value) { attrs.$observe('isSidebar', function(value) {
if (value) { if (value && value !== 'false') {
ctrl.isSidebar = true; ctrl.isSidebar = true;
} else { } else {
ctrl.isSidebar = false; ctrl.isSidebar = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment