@@ -37,7 +37,7 @@ define([
37
37
this . state = {
38
38
originObj : '' ,
39
39
tempObj : '_vp' ,
40
- returnObj : '_vp ' ,
40
+ returnObj : 'vp_df ' ,
41
41
inplace : false ,
42
42
menu : '' ,
43
43
menuItem : '' ,
@@ -176,7 +176,7 @@ define([
176
176
// initialize state values
177
177
that . state . originObj = origin ;
178
178
that . state . tempObj = '_vp' ;
179
- that . state . returnObj = that . state . tempObj ;
179
+ that . state . returnObj = 'vp_df' ;
180
180
if ( that . state . inplace === true ) {
181
181
that . state . returnObj = origin ;
182
182
}
@@ -228,7 +228,7 @@ define([
228
228
// check/uncheck inplace
229
229
$ ( this . wrapSelector ( '#inplace' ) ) . on ( 'change' , function ( ) {
230
230
let checked = $ ( this ) . prop ( 'checked' ) ;
231
- let returnVariable = '_vp ' ;
231
+ let returnVariable = 'vp_df ' ;
232
232
if ( checked === true ) {
233
233
returnVariable = that . state . originObj ;
234
234
}
@@ -1122,7 +1122,7 @@ define([
1122
1122
let page = $ ( frameHtml ) ;
1123
1123
1124
1124
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 '
1126
1126
} ) ;
1127
1127
$ ( page ) . find ( '#vp_feReturn' ) . replaceWith ( allocateSelector . toTagString ( ) ) ;
1128
1128
0 commit comments