##// END OF EJS Templates
Base of an as you type conpleter....
Base of an as you type conpleter. when invoking the completer, instead of having to chose/dismiss, you can continue typing, it will filter the result "as you type" and dismiss itself if ther is no match left. As it is now, it's only works with lowercase letters, I need to find a workaroud for this. for example if you type : * P-y-<tab>-S-o-m-e-t-h-i-n-g * it will propose PySide, but will dismiss when 'o' is pressed and pasting Pyso with a lower case 's'

File last commit:

r5479:0168dc21
r5507:6b2d9cce
Show More
layout.js
61 lines | 2.1 KiB | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Left panel is now working.
r4363
//============================================================================
// Layout
//============================================================================
var IPython = (function (IPython) {
var LayoutManager = function () {
this.bind_events();
};
LayoutManager.prototype.bind_events = function () {
$(window).resize($.proxy(this.do_resize,this));
};
LayoutManager.prototype.do_resize = function () {
var win = $(window);
var w = win.width();
var h = win.height();
var header_height = $('div#header').outerHeight(true);
var app_height = h - header_height - 2; // content height
Brian E. Granger
Implemented basic notebook browser and fixed numerous bugs.
r4488 $('div#main_app').height(app_height + 2); // content+padding+border height
Brian E. Granger
Left panel is now working.
r4363
$('div#left_panel').height(app_height);
$('div#left_panel_splitter').height(app_height);
Brian E. Granger
Work on save widget, kernel status widget and notebook section.
r4372 $('div#notebook_panel').height(app_height);
Brian E. Granger
Left panel is now working.
r4363 var left_panel_width = $('div#left_panel').outerWidth();
var left_panel_splitter_width = $('div#left_panel_splitter').outerWidth();
if (IPython.left_panel.expanded) {
$('div#notebook_panel').css({marginLeft : left_panel_width+left_panel_splitter_width});
} else {
$('div#notebook_panel').css({marginLeft : left_panel_splitter_width});
}
var pager_height = IPython.pager.percentage_height*app_height;
var pager_splitter_height = $('div#pager_splitter').outerHeight(true);
$('div#pager').height(pager_height);
if (IPython.pager.expanded) {
$('div#notebook').height(app_height-pager_height-pager_splitter_height);
} else {
$('div#notebook').height(app_height-pager_splitter_height);
}
};
Stefan van der Walt
Clean up javascript based on js2-mode feedback.
r5479 IPython.LayoutManager = LayoutManager;
Brian E. Granger
Left panel is now working.
r4363
return IPython;
}(IPython));