8000 Demo page with UFO data · leetcode/reactable@45bed87 · GitHub
[go: up one dir, main page]

Skip to content

Commit 45bed87

Browse files
committed
Demo page with UFO data
1 parent 9ee2f22 commit 45bed87

File tree

470 files changed

+292522
-6
lines changed

Some content is hidden

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

470 files changed

+292522
-6
lines changed

_layouts/default.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8' />
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
7+
<meta name="description" content="Reactable : Fast, flexible, and simple data tables in React" />
8+
9+
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
10+
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/table.css">
11+
12+
<title>Reactable</title>
13+
</head>
14+
15+
<body>
16+
17+
<!-- HEADER -->
18+
<div id="header_wrap" class="outer">
19+
<header class="inner">
20+
<a id="forkme_banner" href="https://github.com/glittershark/reactable">View on GitHub</a>
21+
22+
<h1 id="project_title">Reactable</h1>
23+
<h2 id="project_tagline">Fast, flexible, and simple data tables in React</h2>
24+
25+
<section id="downloads">
26+
<a class="zip_download_link" href="https://github.com/glittershark/reactable/zipball/master">
27+
Download this project as a .zip file
28+
</a>
29+
<a class="tar_download_link" href="https://github.com/glittershark/reactable/tarball/master">
30+
Download this project as a tar.gz file
31+
</a>
32+
</section>
33+
</header>
34+
</div>
35+
36+
<!-- MAIN CONTENT -->
37+
<div id="main_content_wrap" class="outer">
38+
<section id="main_content" class="inner">
39+
{% if page.title == 'Reactable' %}
40+
<h1>Reported UFO Sightings</h1>
41+
<div id="demo-table"></div>
42+
{% endif %}
43+
{{content}}
44+
</section>
45+
</div>
46+
47+
<!-- FOOTER -->
48+
<div id="footer_wrap" class="outer">
49+
<footer class="inner">
50+
<p class="copyright">Reactable maintained by <a href="https://github.com/glittershark">glittershark</a></p>
51+
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
52+
</footer>
53+
</div>
54+
55+
56+
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
57+
<script type="text/javascript" src="bower_components/react/react-with-addons.min.js"></script>
58+
<script type="text/javascript" src="bower_components/reactable/build/reactable.js"></script>
59+
<script type="text/javascript" src="data.json"></script>
60+
<script type="text/javascript" src="javascripts/demo-table.js"></script>
61+
</body>
62+
</html>

_site/bower.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "reactable-pages",
3+
"version": "0.2.0",
4+
"homepage": "glittershark.github.io/reactable/",
5+
"authors": [
6+
"Griffin Smith <smith@visionlink.org>"
7+
],
8+
"license": "MIT",
9+
"private": true,
10+
"ignore": [
11+
"**/.*",
12+
"node_modules",
13+
"bower_components",
14+
"test",
15+
"tests"
16+
],
17+
"dependencies": {
18+
"reactable": "~0.2.0",
19+
"react": "~0.10.0",
20+
"jquery": "~2.1.0"
21+
}
22+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright 2014 jQuery Foundation and other contributors
2+
http://jquery.com/
3+
4+
Permission is hereby granted, free of charge, to any person obtaining
5+
a copy of this software and associated documentation files (the
6+
"Software"), to deal in the Software without restriction, including
7+
without limitation the rights to use, copy, modify, merge, publish,
8+
distribute, sublicense, and/or sell copies of the Software, and to
9+
permit persons to whom the Software is furnished to do so, subject to
10+
the following conditions:
11+
12+
The above copyright notice and this permission notice shall be
97AE 13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "jquery",
3+
"version": "2.1.0",
4+
"main": "dist/jquery.js",
5+
"license": "MIT",
6+
"ignore": [
7+
"**/.*",
8+
"build",
9+
"speed",
10+
"test",
11+
"*.md",
12+
"AUTHORS.txt",
13+
"Gruntfile.js",
14+
"package.json"
15+
],
16+
"devDependencies": {
17+
"sizzle": "1.10.16",
18+
"requirejs": "~2.1.8",
19+
"qunit": "~1.12.0",
20+
"sinon": "~1.7.3"
21+
},
22+
"keywords": [
23+
"jquery",
24+
"javascript",
25+
"library"
26+
]
27+
}

0 commit comments

Comments
 (0)
0