Merge pull request #7033 from Carreau/fcell

get cell correctly in nested context
This commit is contained in:
Min RK 2014-11-28 20:38:53 -08:00
commit 9067245c0b

View File

@ -379,7 +379,7 @@ define([
* @return {jQuery} A selector of all cell elements
*/
Notebook.prototype.get_cell_elements = function () {
return this.container.children("div.cell");
return this.container.find(".cell").not('.cell .cell');
};
/**