Skip to content

Commit d75e2b2

Browse files
author
minjk-bl
committed
small changes (Fix spell, style)
1 parent 894272b commit d75e2b2

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

css/m_apps/subset.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
/* Tab Page */
8282
.vp-ds-tab-page {
8383
width: 100%;
84-
height: calc(100% - 150px);
84+
height: calc(100% - 110px);
8585
}
8686
.vp-ds-tab-page.subset {
8787
display: grid;

html/m_apps/file.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</div>
2020
</div>
2121
<div class="vp-accordian-container vp-accordion-gray-color">
22-
<div class="vp-accordian vp-close"><span class="vp-indicator"></span><span class="vp-accordian-caption" data-caption-id="TODO:Variable">Additional Options</span></div>
22+
<div class="vp-accordian vp-open"><span class="vp-indicator"></span><span class="vp-accordian-caption" data-caption-id="TODO:Variable">Additional Options</span></div>
2323
<div id="vp_optionBox" class="vp-accordian-box">
2424
<table class="vp-option-table vp-tbl-gap5">
2525
<colgroup><col width="40%"/><col width="*"/></colgroup>

html/m_visualize/seaborn.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<label for="data" class="vp-bold">Data</label>
7373
<div class="vp-grid-col-p50">
7474
<input type="text" id="data" class="vp-input vp-state"/>
75-
<label><input type="checkbox" id="setXY" class="vp-state"><span>Set X and Y indivisually</span></label>
75+
<label><input type="checkbox" id="setXY" class="vp-state"><span>Set X and Y individually</span></label>
7676
</div>
7777
<div class="vp-grid-col-p50">
7878
<div class="vp-grid-box">

js/m_apps/File.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,24 +305,24 @@ define([
305305
if (pageType == 'Write') {
306306
if (selectedType == 'json') {
307307
$(prefix + '#path_or_buf').parent().html(
308-
com_util.formatString('<input type="text" class="vp-input input-single" id="path_or_buf" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{0}"></div>'
308+
com_util.formatString('<input type="text" class="vp-input vp-state" id="path_or_buf" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{0}"></div>'
309309
, 'vp-file-browser-button')
310310
);
311311
} else if (selectedType == 'pickle') {
312312
$(prefix + '#path').parent().html(
313-
com_util.formatString('<input type="text" class="vp-input input-single" id="path" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{0}"></div>'
313+
com_util.formatString('<input type="text" class="vp-input vp-state" id="path" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{0}"></div>'
314314
, 'vp-file-browser-button')
315315
);
316316
} else {
317317
$(this.fileState[pageType]['fileResultState']['pathInputId']).parent().html(
318-
com_util.formatString('<input type="text" class="vp-input input-single" id="{0}" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{1}"></div>'
318+
com_util.formatString('<input type="text" class="vp-input vp-state" id="{0}" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{1}"></div>'
319319
, 'i1'
320320
, 'vp-file-browser-button')
321321
);
322322
}
323323
} else {
324324
$(this.fileState[pageType]['fileResultState']['pathInputId']).parent().html(
325-
com_util.formatString('<input type="text" class="vp-input input-single" id="{0}" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{1}"></div>'
325+
com_util.formatString('<input type="text" class="vp-input vp-state" id="{0}" index="0" placeholder="" value="" title=""><div id="vp_openFileNavigationBtn" class="{1}"></div>'
326326
, 'i0'
327327
, 'vp-file-browser-button')
328328
);
@@ -334,7 +334,7 @@ define([
334334
var encodingList = ['utf8', 'cp949', 'ascii'];
335335
var suggestInput = new SuggestInput();
336336
suggestInput.setComponentID('encoding');
337-
suggestInput.addClass('vp-input');
337+
suggestInput.addClass('vp-input vp-state');
338338
suggestInput.setSuggestList(function() { return encodingList; });
339339
suggestInput.setPlaceholder('encoding option');
340340
return suggestInput.toTagString();

0 commit comments

Comments
 (0)