@@ -638,6 +638,7 @@ define([
638638
639639 FrameEditor . prototype . renderRenamePage = function ( ) {
640640 var content = new sb . StringBuilder ( ) ;
641+ content . appendFormatLine ( '<div class="{0} {1}">' , 'vp-popup-rename-page' , 'vp-scrollbar' ) ;
641642 content . appendLine ( '<table>' ) ;
642643 content . appendLine ( '<colgroup><col width="100px"><col width="*"></colgroup>' ) ;
643644 this . state . selected . forEach ( ( col , idx ) => {
@@ -648,17 +649,20 @@ define([
648649 content . appendLine ( '</tr>' ) ;
649650 } ) ;
650651 content . appendLine ( '</table>' ) ;
652+ content . appendLine ( '</div>' ) ;
651653 return content . toString ( ) ;
652654 }
653655
654656 FrameEditor . prototype . renderReplacePage = function ( ) {
655657 var content = new sb . StringBuilder ( ) ;
656658 content . appendFormatLine ( '<label><input type="checkbox" class="{0}"/><span>{1}</span></label>' , 'vp-popup-use-regex' , 'Use Regular Expression' ) ;
657659 content . appendLine ( '<br/><br/>' ) ;
658- content . appendFormatLine ( '<table class="{0}">' , 'vp-popup-replace-table' ) ;
660+ content . appendFormatLine ( '<div class="{0}">' , 'vp-popup-replace-table' ) ;
661+ content . appendLine ( '<table>' ) ;
659662 content . appendLine ( this . renderReplaceInput ( 0 ) ) ;
660663 content . appendFormatLine ( '<tr><td colspan="3"><button class="{0} {1}">{2}</button></td></tr>' , 'vp-button' , 'vp-popup-replace-add' , '+ Add Key' ) ;
661664 content . appendLine ( '</table>' ) ;
665+ content . appendLine ( '</div>' ) ;
662666 return content . toString ( ) ;
663667 }
664668
0 commit comments