mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix ZEPPELIN-103
This commit is contained in:
parent
7eccca8d1d
commit
a6ec901403
4 changed files with 2 additions and 7 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -62,7 +62,6 @@ body {
|
|||
visibility : visible;
|
||||
}
|
||||
|
||||
.editor,
|
||||
.executionTime,
|
||||
.nv-controlsWrap {
|
||||
display:none;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue