Skip to content

Commit a9aab33

Browse files
committed
Update template.
1 parent 8f01d7e commit a9aab33

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@
177177
</a></li>
178178
<li><a href="issues/986.html">
179179
986. Editable select box
180+
</a></li>
181+
<li><a href="issues/987.html">
182+
987. Save row data using input.
180183
</a></li>
181184
</ul>
182185
</li>

issues/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<h1>%(title)s(<a href="https://github.com/wenzhixin/bootstrap-table/issues/%(issue)s" target="_blank">#%(issue)s</a>).</h1>
1717
<table id="table"
1818
data-toggle="table"
19-
data-url="json/data1.json">
19+
data-url="../json/data1.json">
2020
<thead>
2121
<tr>
2222
<th data-field="id">ID</th>

methods/template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var fs = require('fs'),
22
sprintf = require('sprintf');
33

4-
if (process.argv.length < 2) {
4+
if (process.argv.length <= 2) {
55
console.log('You need to enter title');
66
return;
77
}

0 commit comments

Comments
 (0)