Fix ZEPPELIN-103

This commit is contained in:
Damien Corneau 2015-06-15 12:24:06 +09:00
parent 7eccca8d1d
commit a6ec901403
4 changed files with 2 additions and 7 deletions

View file

@ -185,10 +185,6 @@ angular.module('zeppelinWebApp').controller('NotebookCtrl', function($scope, $ro
$rootScope.$broadcast('setLookAndFeel', $scope.note.config.looknfeel);
};
var cleanParagraphExcept = function(paragraphId, note) {
var noteCopy = {};
noteCopy.id = note.id;

View file

@ -31,7 +31,7 @@ limitations under the License.
</div>
<div>
<div ng-show="!paragraph.config.editorHide">
<div ng-show="!paragraph.config.editorHide && !viewOnly">
<div id="{{paragraph.id}}_editor"
style="opacity: 1;"
class="editor"

View file

@ -62,7 +62,6 @@ body {
visibility : visible;
}
.editor,
.executionTime,
.nv-controlsWrap {
display:none;

View file

@ -78,7 +78,7 @@ limitations under the License.
<script src="bower_components/angular-touch/angular-touch.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/angular-websocket/angular-websocket.js"></script>
<script src="bower_components/angular-websocket/angular-websocket.min.js"></script>
<script src="bower_components/ace-builds/src-noconflict/ace.js"></script>
<script src="bower_components/ace-builds/src-noconflict/mode-scala.js"></script>
<script src="bower_components/ace-builds/src-noconflict/mode-sql.js"></script>