Skip to content

Commit

Permalink
chore: edit examples
Browse files Browse the repository at this point in the history
  • Loading branch information
seonim-ryu committed May 24, 2017
1 parent 5c50bd2 commit acd621b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"title": "10. Binding to remote data"
},
"example11": {
"title": "11. Customizing the row headers"
"title": "11. Customizing Row headers"
}
}
1 change: 0 additions & 1 deletion examples/example02.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
el: $('#grid'),
scrollX: false,
scrollY: false,
rowHeaders: ['rowNum'],
columns: [
{
title: 'Cover Image',
Expand Down
1 change: 0 additions & 1 deletion examples/example03.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
el: $('#grid'),
scrollX: false,
scrollY: false,
rowHeaders: ['rowNum'],
header: {
height: 100,
complexColumns: [
Expand Down
1 change: 0 additions & 1 deletion examples/example04.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
el: $('#grid'),
scrollX: false,
scrollY: false,
rowHeaders: ['rowNum'],
columns: [
{
title: 'Name',
Expand Down
4 changes: 2 additions & 2 deletions examples/example11.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="ko">
<head>
<meta charset="utf-8">
<title>11. Customizing the row headers</title>
<title>11. Customizing Row headers</title>
<link rel="stylesheet" type="text/css" href="./css/explain.css" />
<link rel="stylesheet" type="text/css" href="../dist/grid.css" />
<link rel="stylesheet" type="text/css" href="./css/checkbox.css" />
Expand Down Expand Up @@ -100,7 +100,7 @@
console.log('check', ev);
});

grid.on('uncheck', function() {
grid.on('uncheck', function(ev) {
console.log('uncheck', ev);
});

Expand Down

0 comments on commit acd621b

Please sign in to comment.