@@ -638,6 +638,7 @@ define([
638
638
639
639
FrameEditor . prototype . renderRenamePage = function ( ) {
640
640
var content = new sb . StringBuilder ( ) ;
641
+ content . appendFormatLine ( '<div class="{0} {1}">' , 'vp-popup-rename-page' , 'vp-scrollbar' ) ;
641
642
content . appendLine ( '<table>' ) ;
642
643
content . appendLine ( '<colgroup><col width="100px"><col width="*"></colgroup>' ) ;
643
644
this . state . selected . forEach ( ( col , idx ) => {
@@ -648,17 +649,20 @@ define([
648
649
content . appendLine ( '</tr>' ) ;
649
650
} ) ;
650
651
content . appendLine ( '</table>' ) ;
652
+ content . appendLine ( '</div>' ) ;
651
653
return content . toString ( ) ;
652
654
}
653
655
654
656
FrameEditor . prototype . renderReplacePage = function ( ) {
655
657
var content = new sb . StringBuilder ( ) ;
656
658
content . appendFormatLine ( '<label><input type="checkbox" class="{0}"/><span>{1}</span></label>' , 'vp-popup-use-regex' , 'Use Regular Expression' ) ;
657
659
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>' ) ;
659
662
content . appendLine ( this . renderReplaceInput ( 0 ) ) ;
660
663
content . appendFormatLine ( '<tr><td colspan="3"><button class="{0} {1}">{2}</button></td></tr>' , 'vp-button' , 'vp-popup-replace-add' , '+ Add Key' ) ;
661
664
content . appendLine ( '</table>' ) ;
665
+ content . appendLine ( '</div>' ) ;
662
666
return content . toString ( ) ;
663
667
}
664
668
0 commit comments