Skip to content

Commit 9dd0024

Browse files
committed
Initial Commit
0 parents  commit 9dd0024

File tree

11 files changed

+10436
-0
lines changed

11 files changed

+10436
-0
lines changed

.gitignore

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
13+
# Directory for instrumented libs generated by jscoverage/JSCover
14+
lib-cov
15+
16+
# Coverage directory used by tools like istanbul
17+
coverage
18+
19+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
20+
.grunt
21+
22+
# node-waf configuration
23+
.lock-wscript
24+
25+
# Compiled binary addons (http://nodejs.org/api/addons.html)
26+
build/Release
27+
28+
# Dependency directory
29+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
30+
node_modules
31+
### JetBrains template
32+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
33+
34+
*.iml
35+
36+
## Directory-based project format:
37+
.idea/
38+
# if you remove the above rule, at least ignore the following:
39+
40+
# User-specific stuff:
41+
# .idea/workspace.xml
42+
# .idea/tasks.xml
43+
# .idea/dictionaries
44+
45+
# Sensitive or high-churn files:
46+
# .idea/dataSources.ids
47+
# .idea/dataSources.xml
48+
# .idea/sqlDataSources.xml
49+
# .idea/dynamic.xml
50+
# .idea/uiDesigner.xml
51+
52+
# Gradle:
53+
# .idea/gradle.xml
54+
# .idea/libraries
55+
56+
# Mongo Explorer plugin:
57+
# .idea/mongoSettings.xml
58+
59+
## File-based project format:
60+
*.ipr
61+
*.iws
62+
63+
## Plugin-specific files:
64+
65+
# IntelliJ
66+
/out/
67+
68+
# mpeltonen/sbt-idea plugin
69+
.idea_modules/
70+
71+
# JIRA plugin
72+
atlassian-ide-plugin.xml
73+
74+
# Crashlytics plugin (for Android Studio and IntelliJ)
75+
com_crashlytics_export_strings.xml
76+
crashlytics.properties
77+
crashlytics-build.properties
78+
### OSX template
79+
.DS_Store
80+
.AppleDouble
81+
.LSOverride
82+
83+
# Icon must end with two \r
84+
Icon
85+
86+
# Thumbnails
87+
._*
88+
89+
# Files that might appear in the root of a volume
90+
.DocumentRevisions-V100
91+
.fseventsd
92+
.Spotlight-V100
93+
.TemporaryItems
94+
.Trashes
95+
.VolumeIcon.icns
96+
97+
# Directories potentially created on remote AFP share
98+
.AppleDB
99+
.AppleDesktop
100+
Network Trash Folder
101+
Temporary Items
102+
.apdisk
103+

dist/panels.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/panels.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/example.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Panels Example</title>
6+
</head>
7+
<body>
8+
9+
<script src="js/vue.js"></script>
10+
<script src="js/grapnel.js"></script>
11+
<script src="../dist/panels.min.js"></script>
12+
<script>
13+
var app = new Panels({
14+
debug: true,
15+
preload: true
16+
});
17+
18+
var home = new app.Panel({
19+
templateUrl: 'panel1.html'
20+
}, {}, {});
21+
</script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)