@@ -37,7 +37,7 @@ define([
3737 this . state = {
3838 originObj : '' ,
3939 tempObj : '_vp' ,
40- returnObj : '_vp ' ,
40+ returnObj : 'vp_df ' ,
4141 inplace : false ,
4242 menu : '' ,
4343 menuItem : '' ,
@@ -176,7 +176,7 @@ define([
176176 // initialize state values
177177 that . state . originObj = origin ;
178178 that . state . tempObj = '_vp' ;
179- that . state . returnObj = that . state . tempObj ;
179+ that . state . returnObj = 'vp_df' ;
180180 if ( that . state . inplace === true ) {
181181 that . state . returnObj = origin ;
182182 }
@@ -228,7 +228,7 @@ define([
228228 // check/uncheck inplace
229229 $ ( this . wrapSelector ( '#inplace' ) ) . on ( 'change' , function ( ) {
230230 let checked = $ ( this ) . prop ( 'checked' ) ;
231- let returnVariable = '_vp ' ;
231+ let returnVariable = 'vp_df ' ;
232232 if ( checked === true ) {
233233 returnVariable = that . state . originObj ;
234234 }
@@ -1122,7 +1122,7 @@ define([
11221122 let page = $ ( frameHtml ) ;
11231123
11241124 let allocateSelector = new DataSelector ( {
1125- pageThis : this , id : 'vp_feReturn' , placeholder : 'Variable name' , required : true , value : '_vp '
1125+ pageThis : this , id : 'vp_feReturn' , placeholder : 'Variable name' , required : true , value : 'vp_df '
11261126 } ) ;
11271127 $ ( page ) . find ( '#vp_feReturn' ) . replaceWith ( allocateSelector . toTagString ( ) ) ;
11281128
0 commit comments