Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
John Paul Jones committed Jul 29, 2014
1 parent acfb76d commit afc8051
Show file tree
Hide file tree
Showing 46 changed files with 3,194 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
21 changes: 21 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
dist
.tmp
.sass-cache
bower_components
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/angularjs-dynamic-tree.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/jsLibraryMappings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/libraries/angularjs_dynamic_tree_node_modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/scopes/scope_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

558 changes: 558 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"globals": {
"angular": false
}
}
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
language: node_js
node_js:
- '0.10'
before_script:
- 'npm install -g bower grunt-cli'
- 'bower install'
1 change: 1 addition & 0 deletions Example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"data":{"title":"Documents"},"attr":{"documentId":0,"href":"","documentGroupId":0,"documentTypeId":3,"selectable":false,"selected":0,"expanded":true,"isEndNode":false,"show":true,"draft":false},"children":[{"data":{"title":"Business"},"attr":{"documentId":0,"href":"","documentGroupId":6702,"documentTypeId":3,"selectable":true,"selected":0,"expanded":false,"isEndNode":false,"show":true,"draft":false},"children":[{"data":{"title":"Introduction To My Business"},"attr":{"documentId":18101,"href":"","documentGroupId":6702,"documentTypeId":2,"selectable":true,"selected":0,"expanded":false,"isEndNode":true,"show":true,"draft":false},"children":null}]},{"data":{"title":"Personal"},"attr":{"documentId":0,"href":"","documentGroupId":6704,"documentTypeId":3,"selectable":true,"selected":0,"expanded":false,"isEndNode":false,"show":true,"draft":false},"children":[{"data":{"title":"All about me"},"attr":{"documentId":18101,"href":"","documentGroupId":6704,"documentTypeId":2,"selectable":true,"selected":0,"expanded":false,"isEndNode":true,"show":true,"draft":false},"children":[{"data":{"title":"Holidays"},"attr":{"documentId":0,"href":"","documentGroupId":6859,"documentTypeId":3,"selectable":true,"selected":0,"expanded":false,"isEndNode":false,"show":true,"draft":false},"children":[{"data":{"title":"Summer Holiday Plan"},"attr":{"documentId":312,"href":"","documentGroupId":6859,"documentTypeId":1,"selectable":true,"selected":0,"expanded":false,"isEndNode":true,"show":true,"draft":false},"children":null},{"data":{"title":"Winter Holiday Plan"},"attr":{"documentId":12,"href":"","documentGroupId":6859,"documentTypeId":1,"selectable":true,"selected":0,"expanded":false,"isEndNode":true,"show":true,"draft":false},"children":null},{"data":{"title":"School Holiday Plan"},"attr":{"documentId":14,"href":"","documentGroupId":6859,"documentTypeId":1,"selectable":true,"selected":0,"expanded":false,"isEndNode":true,"show":true,"draft":false},"children":null}]}]}]}]}
Loading

0 comments on commit afc8051

Please sign in to comment.