Skip to content

Commit c7c62bb

Browse files
author
chilimannen
committed
Added: Sample image & Fixed: lowercase indexname
1 parent 8e11114 commit c7c62bb

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

excelastic-1.0.0.jar

7 Bytes
Binary file not shown.

sample-ui.png

22.1 KB
Loading

src/main/resources/webroot/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>Excelastic</h1>
3333
</div>
3434

3535
<div class="form-group">
36-
<label for="offset" class="col-lg-2 control-label">Column-row</label>
36+
<label for="offset" class="col-lg-2 control-label">Title-row</label>
3737
<div class="col-lg-10">
3838
<input type="text" class="form-control" id="offset" name="offset" value="1">
3939
</div>

src/main/resources/webroot/js/application.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ $('#file').change(function () {
44

55
$(document).ready(function () {
66
var date = new Date();
7-
$('#index').val(date.toLocaleString('en-us', {month: 'long'}) + '-' + date.getFullYear());
7+
$('#index').val(date.toLocaleString('en-us', {month: 'long'}).toLowerCase() + '-' + date.getFullYear());
88
});

0 commit comments

Comments
 (0)