Github user prabhjyotsingh commented on the pull request:
https://github.com/apache/incubator-zeppelin/pull/516#issuecomment-164997127
Thanks for the review and finding bugs;
1) Scrollbar when code line is too long on notebook refresh/load - Fixed
2) Resize to a size too small error - Fixed by having a minimum height,
tried to use jQuery resizable minHeight but that cannot be used in out use
case. Hence, fixed with following
var adjustHeight = elem.height() - extraHeight;
if (adjustHeight < 100) {
scope.updateWidth({height: 100, width: Math.ceil(elem.width() /
colStep)});
} else {
scope.updateWidth({height: adjustHeight, width:
Math.ceil(elem.width() / colStep)});
}
3) opposite effect resize - With above two this also got fixed.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---