--- a/client/js/renderer/scene.js Thu Oct 01 15:45:20 2015 +0200
+++ b/client/js/renderer/scene.js Thu Oct 01 17:16:06 2015 +0200
@@ -1223,11 +1223,11 @@
};
this.view.setScale(params.zoom_level, new paper.Point(params.offset));
}
- //if view parameters = autoscale or views_parameters options is false, we apply a zoom fit on the view.
+ //if view parameters = autoscale we apply a zoom fit on the view.
if ((typeof _params.view !== 'undefined' && _params.view === "autoscale")){
this.view.autoScale();
}
- //if viewsNodes = false or views_nodes options is false, we show all the node by default.
+ //if viewsNodes = false we show all the node by default.
if (typeof _params.viewsNodes !== 'undefined'){
if (_params.viewsNodes === "true"){
this.view.hiddenNodes = (this.view.params.hidden_nodes || []).concat();