@dualbox/editor 1.0.13 → 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/src/m/GraphModel.js
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
</div>
|
|
87
87
|
</div>
|
|
88
88
|
<div class="tab-pane" id="2" style="width 100%; height: 100%; background-color: white;">
|
|
89
|
-
<div class="main" style="width: 100%; height: 100%; overflow: hidden;">
|
|
89
|
+
<div class="db-editor-main" style="width: 100%; height: 100%; overflow: hidden;">
|
|
90
90
|
<div class="code-panel">
|
|
91
91
|
<div class="button-bar form-inline code-controls" style="position: relative;">
|
|
92
92
|
<button class="btn btn-primary btn-save-interface-element">Save changes</button>
|
|
@@ -28,7 +28,7 @@ var TemplateBinds = function(view, div) {
|
|
|
28
28
|
});
|
|
29
29
|
$(document).mousemove(function(e){
|
|
30
30
|
$('.code-panel').css('width', e.pageX + "px");
|
|
31
|
-
$('.application-container').css('width', ($(".main").width() - e.pageX - 5) + "px");
|
|
31
|
+
$('.application-container').css('width', ($(".db-editor-main").width() - e.pageX - 5) + "px");
|
|
32
32
|
})
|
|
33
33
|
});
|
|
34
34
|
|