Answers for "prevent jupyter from having scrollbars in a cell"

0

prevent jupyter from having scrollbars in a cell

%%javascript
IPython.OutputArea.prototype._should_scroll = function(lines) {
    return false;
}
Posted by: Guest on August-19-2020

Code answers related to "prevent jupyter from having scrollbars in a cell"

Browse Popular Code Answers by Language