Updated to add statusPanel variable
This commit is contained in:
parent
3718238277
commit
b996f801cc
1 changed files with 2 additions and 1 deletions
|
@ -285,6 +285,7 @@ defaultTextHeight = parseInt($(".CodeMirror").css('line-height'));
|
||||||
|
|
||||||
var statusBarTemplate = null;
|
var statusBarTemplate = null;
|
||||||
var statusBar = null;
|
var statusBar = null;
|
||||||
|
var statusPanel = null;
|
||||||
var statusCursor = null;
|
var statusCursor = null;
|
||||||
var statusFile = null;
|
var statusFile = null;
|
||||||
var statusIndicators = null;
|
var statusIndicators = null;
|
||||||
|
@ -312,7 +313,7 @@ function addStatusBar() {
|
||||||
statusIndent = statusBar.find('.status-indent');
|
statusIndent = statusBar.find('.status-indent');
|
||||||
statusKeymap = statusBar.find('.status-keymap');
|
statusKeymap = statusBar.find('.status-keymap');
|
||||||
statusLength = statusBar.find('.status-length');
|
statusLength = statusBar.find('.status-length');
|
||||||
editor.addPanel(statusBar[0], {
|
statusPanel = editor.addPanel(statusBar[0], {
|
||||||
position: "bottom"
|
position: "bottom"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue