Skip to content

Commit 8a6dd34

Browse files
committed
generate uuid with prefix u (previous version had some bugs)
1 parent 8629f53 commit 8a6dd34

File tree

270 files changed

+521
-521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

270 files changed

+521
-521
lines changed

src/api_block/block.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ define([
330330
*/
331331
this.type = type; // this 블럭의 타입 값 (type은 class : 1, def: 2, if: 3 ...)
332332
this.childBlockUUIDList = []; // vpnote 저장용 데이터
333-
this.uuid = vpCommon.getUUID(); // this 블럭의 고유 값
333+
this.uuid = 'u' + vpCommon.getUUID(); // this 블럭의 고유 값
334334
this.direction = BLOCK_DIRECTION.NONE; // this 블럭의 위치 값.
335335
// 위치는 this 블럭의 부모로 부터 DOWN, INDENT인지 결정됨
336336

src/api_block/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ define([
3333
// document.getElementsByTagName("head")[0].appendChild(link);
3434
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
3535
if (typeof(callback) == 'function') {
36-
var uuid = vpCommon.getUUID();
36+
var uuid = 'u' + vpCommon.getUUID();
3737
// 최대 10회 중복되지 않도록 체크
3838
for (var idx = 0; idx < 10; idx++) {
3939
// 이미 사용중인 uuid 인 경우 다시 생성
4040
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
41-
uuid = vpCommon.getUUID();
41+
uuid = 'u' + vpCommon.getUUID();
4242
}
4343
}
4444
$(vpCommon.wrapSelector(`#${vpConst.OPTION_GREEN_ROOM}`)).find(`.${vpConst.API_OPTION_PAGE}`).addClass(uuid);

src/common/component/vpComComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define([
1919
* 컨트롤 uuid 생성
2020
*/
2121
vpComComponent.prototype.setUUID = function() {
22-
this._UUID = vpCommon.getUUID();
22+
this._UUID = 'u' + vpCommon.getUUID();
2323
}
2424

2525
/**

src/common/component/vpVarSelector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ define([
2323
$(this.wrapSelector('.vp-vs-tester')).html(varSelector.render());
2424
*/
2525
var VarSelector = function(dataTypes, defaultType='', showOthers=true, useTyping=true) {
26-
this.uuid = vpCommon.getUUID();
26+
this.uuid = 'u' + vpCommon.getUUID();
2727
this.label = {
2828
'others': 'Others',
2929
'typing': 'Typing'

src/common/vpFileNavigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ define([
2626
* @constructor
2727
*/
2828
var FileNavigation = function(type, state) {
29-
this.uuid = vpCommon.getUUID();
29+
this.uuid = 'u' + vpCommon.getUUID();
3030
this.type = type;
3131
// state types
3232
this.state = {

src/common/vpFrameEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ define([
8888
var FrameEditor = function(pageThis, targetId) {
8989
this.pageThis = pageThis;
9090
this.targetId = targetId;
91-
this.uuid = vpCommon.getUUID();
91+
this.uuid = 'u' + vpCommon.getUUID();
9292

9393
this.renderButton();
9494

src/common/vpInstanceEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ define([
4141
var InstanceEditor = function(pageThis, targetId, containerId='vp-wrapper', popup=false) {
4242
this.pageThis = pageThis;
4343
this.targetId = targetId;
44-
this.uuid = vpCommon.getUUID();
44+
this.uuid = 'u' + vpCommon.getUUID();
4545
this.containerId = containerId;
4646
this.popup = popup;
4747

src/common/vpPopupPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ define([
2626
var PopupPage = function(pageThis, targetId) {
2727
this.pageThis = pageThis;
2828
this.targetId = targetId;
29-
this.uuid = vpCommon.getUUID();
29+
this.uuid = 'u' + vpCommon.getUUID();
3030

3131
this.config = {
3232
title: '',

src/common/vpSnippets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ define([
3636
var Snippets = function(pageThis, targetId) {
3737
this.pageThis = pageThis;
3838
this.targetId = targetId;
39-
this.uuid = vpCommon.getUUID();
39+
this.uuid = 'u' + vpCommon.getUUID();
4040

4141
this.state = {
4242

src/common/vpSubsetEditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ define([
117117
var SubsetEditor = function(pageThis, targetId, useInputVariable=false) {
118118
this.pageThis = pageThis;
119119
this.targetId = targetId;
120-
this.uuid = vpCommon.getUUID();
120+
this.uuid = 'u' + vpCommon.getUUID();
121121
this.useInputVariable = useInputVariable;
122122

123123
// specify pandas object types

src/container/optionSample.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ define([
3131
// document.getElementsByTagName("head")[0].appendChild(link);
3232
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
3333
if (typeof(callback) === 'function') {
34-
var uuid = vpCommon.getUUID();
34+
var uuid = 'u' + vpCommon.getUUID();
3535
// 최대 10회 중복되지 않도록 체크
3636
for (var idx = 0; idx < 10; idx++) {
3737
// 이미 사용중인 uuid 인 경우 다시 생성
3838
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
39-
uuid = vpCommon.getUUID();
39+
uuid = 'u' + vpCommon.getUUID();
4040
}
4141
}
4242
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/import.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ define([
2828
// document.getElementsByTagName("head")[0].appendChild(link);
2929
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
3030
if (typeof(callback) === 'function') {
31-
var uuid = vpCommon.getUUID();
31+
var uuid = 'u' + vpCommon.getUUID();
3232
// 최대 10회 중복되지 않도록 체크
3333
for (var idx = 0; idx < 10; idx++) {
3434
// 이미 사용중인 uuid 인 경우 다시 생성
3535
if ($(vpCommon.wrapSelector(vpCommon.formatString(".{0}", uuid))).length > 0) {
36-
uuid = vpCommon.getUUID();
36+
uuid = 'u' + vpCommon.getUUID();
3737
}
3838
}
3939
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/import_sample.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ define([
2727
// document.getElementsByTagName("head")[0].appendChild(link);
2828
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2929
if (typeof(callback) === 'function') {
30-
var uuid = vpCommon.getUUID();
30+
var uuid = 'u' + vpCommon.getUUID();
3131
// 최대 10회 중복되지 않도록 체크
3232
for (var idx = 0; idx < 10; idx++) {
3333
// 이미 사용중인 uuid 인 경우 다시 생성
3434
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
35-
uuid = vpCommon.getUUID();
35+
uuid = 'u' + vpCommon.getUUID();
3636
}
3737
}
3838
$(vpCommon.wrapSelector(vpConst.OPTION_GREEN_ROOM)).find(vpConst.OPTION_PAGE).addClass(uuid);

src/file_io/import_sample2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ define([
2727
// document.getElementsByTagName("head")[0].appendChild(link);
2828
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2929
if (typeof(callback) === 'function') {
30-
var uuid = vpCommon.getUUID();
30+
var uuid = 'u' + vpCommon.getUUID();
3131
// 최대 10회 중복되지 않도록 체크
3232
for (var idx = 0; idx < 10; idx++) {
3333
// 이미 사용중인 uuid 인 경우 다시 생성
3434
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
35-
uuid = vpCommon.getUUID();
35+
uuid = 'u' + vpCommon.getUUID();
3636
}
3737
}
3838
$(vpCommon.wrapSelector(vpConst.OPTION_GREEN_ROOM)).find(vpConst.OPTION_PAGE).addClass(uuid);

src/file_io/instance.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ define([
6464
// document.getElementsByTagName("head")[0].appendChild(link);
6565
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
6666
if (typeof(callback) === 'function') {
67-
var uuid = vpCommon.getUUID();
67+
var uuid = 'u' + vpCommon.getUUID();
6868
// 최대 10회 중복되지 않도록 체크
6969
for (var idx = 0; idx < 10; idx++) {
7070
// 이미 사용중인 uuid 인 경우 다시 생성
7171
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
72-
uuid = vpCommon.getUUID();
72+
uuid = 'u' + vpCommon.getUUID();
7373
}
7474
}
7575
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/instance_old.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ define([
6161
// document.getElementsByTagName("head")[0].appendChild(link);
6262
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
6363
if (typeof(callback) === 'function') {
64-
var uuid = vpCommon.getUUID();
64+
var uuid = 'u' + vpCommon.getUUID();
6565
// 최대 10회 중복되지 않도록 체크
6666
for (var idx = 0; idx < 10; idx++) {
6767
// 이미 사용중인 uuid 인 경우 다시 생성
6868
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
69-
uuid = vpCommon.getUUID();
69+
uuid = 'u' + vpCommon.getUUID();
7070
}
7171
}
7272
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/instance_old2.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ define([
5454
// document.getElementsByTagName("head")[0].appendChild(link);
5555
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
5656
if (typeof(callback) === 'function') {
57-
var uuid = vpCommon.getUUID();
57+
var uuid = 'u' + vpCommon.getUUID();
5858
// 최대 10회 중복되지 않도록 체크
5959
for (var idx = 0; idx < 10; idx++) {
6060
// 이미 사용중인 uuid 인 경우 다시 생성
6161
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
62-
uuid = vpCommon.getUUID();
62+
uuid = 'u' + vpCommon.getUUID();
6363
}
6464
}
6565
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/pip.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ define([
2626
// document.getElementsByTagName("head")[0].appendChild(link);
2727
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2828
if (typeof(callback) === 'function') {
29-
var uuid = vpCommon.getUUID();
29+
var uuid = 'u' + vpCommon.getUUID();
3030
// 최대 10회 중복되지 않도록 체크
3131
for (var idx = 0; idx < 10; idx++) {
3232
// 이미 사용중인 uuid 인 경우 다시 생성
3333
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
34-
uuid = vpCommon.getUUID();
34+
uuid = 'u' + vpCommon.getUUID();
3535
}
3636
}
3737
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/settings.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ define([
2727
// document.getElementsByTagName("head")[0].appendChild(link);
2828
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2929
if (typeof(callback) === 'function') {
30-
var uuid = vpCommon.getUUID();
30+
var uuid = 'u' + vpCommon.getUUID();
3131
// 최대 10회 중복되지 않도록 체크
3232
for (var idx = 0; idx < 10; idx++) {
3333
// 이미 사용중인 uuid 인 경우 다시 생성
3434
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
35-
uuid = vpCommon.getUUID();
35+
uuid = 'u' + vpCommon.getUUID();
3636
}
3737
}
3838
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/udf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ define([
3333
// document.getElementsByTagName("head")[0].appendChild(link);
3434
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
3535
if (typeof(callback) === 'function') {
36-
var uuid = vpCommon.getUUID();
36+
var uuid = 'u' + vpCommon.getUUID();
3737
// 최대 10회 중복되지 않도록 체크
3838
for (var idx = 0; idx < 10; idx++) {
3939
// 이미 사용중인 uuid 인 경우 다시 생성
4040
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
41-
uuid = vpCommon.getUUID();
41+
uuid = 'u' + vpCommon.getUUID();
4242
}
4343
}
4444
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/file_io/variables.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ define([
2424
// document.getElementsByTagName("head")[0].appendChild(link);
2525
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2626
if (typeof(callback) === 'function') {
27-
var uuid = vpCommon.getUUID();
27+
var uuid = 'u' + vpCommon.getUUID();
2828
// 최대 10회 중복되지 않도록 체크
2929
for (var idx = 0; idx < 10; idx++) {
3030
// 이미 사용중인 uuid 인 경우 다시 생성
3131
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
32-
uuid = vpCommon.getUUID();
32+
uuid = 'u' + vpCommon.getUUID();
3333
}
3434
}
3535
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/markdown/markdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ define([
3131
var optionLoadCallback = function(callback, meta) {
3232
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
3333
if (typeof(callback) === 'function') {
34-
var uuid = vpCommon.getUUID();
34+
var uuid = 'u' + vpCommon.getUUID();
3535
// 최대 10회 중복되지 않도록 체크
3636
for (var idx = 0; idx < 10; idx++) {
3737
// 이미 사용중인 uuid 인 경우 다시 생성
3838
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
39-
uuid = vpCommon.getUUID();
39+
uuid = 'u' + vpCommon.getUUID();
4040
}
4141
}
4242
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/matplotlib/figure.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ define([
2323
// document.getElementsByTagName("head")[0].appendChild(link);
2424
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2525
if (typeof(callback) === 'function') {
26-
var uuid = vpCommon.getUUID();
26+
var uuid = 'u' + vpCommon.getUUID();
2727
// 최대 10회 중복되지 않도록 체크
2828
for (var idx = 0; idx < 10; idx++) {
2929
// 이미 사용중인 uuid 인 경우 다시 생성
3030
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
31-
uuid = vpCommon.getUUID();
31+
uuid = 'u' + vpCommon.getUUID();
3232
}
3333
}
3434
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/matplotlib/import.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ define([
2424
// document.getElementsByTagName("head")[0].appendChild(link);
2525
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2626
if (typeof(callback) === 'function') {
27-
var uuid = vpCommon.getUUID();
27+
var uuid = 'u' + vpCommon.getUUID();
2828
// 최대 10회 중복되지 않도록 체크
2929
for (var idx = 0; idx < 10; idx++) {
3030
// 이미 사용중인 uuid 인 경우 다시 생성
3131
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
32-
uuid = vpCommon.getUUID();
32+
uuid = 'u' + vpCommon.getUUID();
3333
}
3434
}
3535
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/matplotlib/plot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ define([
4949
// document.getElementsByTagName("head")[0].appendChild(link);
5050
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
5151
if (typeof(callback) === 'function') {
52-
var uuid = vpCommon.getUUID();
52+
var uuid = 'u' + vpCommon.getUUID();
5353
// 최대 10회 중복되지 않도록 체크
5454
for (var idx = 0; idx < 10; idx++) {
5555
// 이미 사용중인 uuid 인 경우 다시 생성
5656
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
57-
uuid = vpCommon.getUUID();
57+
uuid = 'u' + vpCommon.getUUID();
5858
}
5959
}
6060
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/matplotlib/plot_new.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ define([
2424
// document.getElementsByTagName("head")[0].appendChild(link);
2525
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2626
if (typeof(callback) === 'function') {
27-
var uuid = vpCommon.getUUID();
27+
var uuid = 'u' + vpCommon.getUUID();
2828
// 최대 10회 중복되지 않도록 체크
2929
for (var idx = 0; idx < 10; idx++) {
3030
// 이미 사용중인 uuid 인 경우 다시 생성
3131
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
32-
uuid = vpCommon.getUUID();
32+
uuid = 'u' + vpCommon.getUUID();
3333
}
3434
}
3535
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/matplotlib/saveImg.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ define([
2323
// document.getElementsByTagName("head")[0].appendChild(link);
2424
// 컨테이너에서 전달된 callback 함수가 존재하면 실행.
2525
if (typeof(callback) === 'function') {
26-
var uuid = vpCommon.getUUID();
26+
var uuid = 'u' + vpCommon.getUUID();
2727
// 최대 10회 중복되지 않도록 체크
2828
for (var idx = 0; idx < 10; idx++) {
2929
// 이미 사용중인 uuid 인 경우 다시 생성
3030
if ($(vpConst.VP_CONTAINER_ID).find("." + uuid).length > 0) {
31-
uuid = vpCommon.getUUID();
31+
uuid = 'u' + vpCommon.getUUID();
3232
}
3333
}
3434
$(vpCommon.wrapSelector(vpCommon.formatString("#{0}", vpConst.OPTION_GREEN_ROOM))).find(vpCommon.formatString(".{0}", vpConst.API_OPTION_PAGE)).addClass(uuid);

src/numpy/common/NumpyPageRender/parent/privateMethod/_renderAdditionalOptionContainer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ define ([
44
], function( vpCommon, sb ) {
55

66
var _renderAdditionalOptionContainer = function(numpyPageRendererThis) {
7-
var uuid = vpCommon.getUUID();
8-
var newUuid = vpCommon.getUUID();
7+
var uuid = 'u' + vpCommon.getUUID();
8+
var newUuid = 'u' + vpCommon.getUUID();
99

1010
var numpyPageRendererThis = numpyPageRendererThis;
1111
var importPackageThis = numpyPageRendererThis.getImportPackageThis();

src/numpy/common/NumpyPageRender/parent/privateMethod/_renderArrayEditorTitle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ define ([
1515
var numpyPageRenderThis = numpyPageRenderThis;
1616
var importPackageThis = numpyPageRenderThis.getImportPackageThis();
1717
var numpyStateGenerator = numpyPageRenderThis.getStateGenerator();
18-
var uuid = vpCommon.getUUID();
18+
var uuid = 'u' + vpCommon.getUUID();
1919
var dom;
2020
switch(funcId){
2121
/**

src/numpy/common/NumpyPageRender/parent/privateMethod/_renderCallVarBlock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define ([
77
* @param {numpyPageRenderer this} numpyPageRendererThis
88
*/
99
var _renderCallVarBlock = function(numpyPageRendererThis) {
10-
var uuid = vpCommon.getUUID();
10+
var uuid = 'u' + vpCommon.getUUID();
1111
var numpyPageRendererThis = numpyPageRendererThis;
1212
var numpyStateGenerator = numpyPageRendererThis.getStateGenerator();
1313
var sbTagString = new sb.StringBuilder();

0 commit comments

Comments
 (0)