Skip to content

Commit d8f2ada

Browse files
committed
- Fixed:
+ Missing attributes: indent & indent_plus. + Upgrade gulp4. + Add package-lock.json & yarn.lock. + Add jsdoc3. + Upgrade version: v3.0.10.
1 parent 76c645f commit d8f2ada

Some content is hidden

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

69 files changed

+169958
-1965
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ demo/source
2121

2222
bower_components
2323

24-
yarn.lock
24+
!yarn.lock
25+
!package-lock.json

.jshintrc

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,38 @@
11
{
2-
"camelcase": false,
3-
"mocha": true,
4-
"jasmine": true,
5-
"freeze": true,
6-
"trailing": true,
7-
"white": true,
8-
"browserify": true,
9-
"qunit": true,
10-
"funcscope": true,
11-
"laxbreak": true,
12-
"phantom": true,
13-
"node": true,
14-
"noempty": true,
15-
"evil": true,
16-
"eqeqeq": true,
17-
"nocomma": false,
18-
"nonstandard": true,
19-
"quotmark": "single",
20-
"lastsemic": true,
21-
"devel": true,
22-
"jquery": true,
23-
"nonbsp": true,
24-
"browser": true,
25-
"bitwise": true,
26-
"debug": true,
27-
"curly": true,
28-
"undef": true,
29-
"enforceall": true,
30-
"eqnull": true,
31-
"asi": true,
32-
"validthis": true,
33-
"nonew": true,
34-
"forin": true,
35-
"predef": ["angular"]
2+
"camelcase": false,
3+
"mocha": true,
4+
"jasmine": true,
5+
"freeze": true,
6+
"trailing": true,
7+
"white": true,
8+
"browserify": true,
9+
"qunit": true,
10+
"funcscope": true,
11+
"laxbreak": true,
12+
"phantom": true,
13+
"node": true,
14+
"noempty": true,
15+
"evil": true,
16+
"eqeqeq": true,
17+
"nocomma": false,
18+
"nonstandard": true,
19+
"quotmark": "single",
20+
"lastsemic": true,
21+
"devel": true,
22+
"jquery": true,
23+
"nonbsp": true,
24+
"browser": true,
25+
"bitwise": true,
26+
"debug": true,
27+
"curly": true,
28+
"undef": true,
29+
"enforceall": true,
30+
"eqnull": true,
31+
"asi": true,
32+
"validthis": true,
33+
"nonew": true,
34+
"forin": true,
35+
"predef": [
36+
"angular"
37+
]
3638
}

bower.json

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,58 @@
11
{
2-
"name": "angular-tree-dnd",
3-
"version": "3.0.6",
4-
"authors": [
5-
"Nguyễn Thiện Hùng"
6-
],
7-
"homepage": "https://github.com/thienhung1989/angular-tree-dnd",
8-
"description": "Display tree table (or list) & event DrapnDrop (allow drag multi tree-dnd include all type: table, ol, ul) by AngularJS",
9-
"main": [
10-
"dist/ng-tree-dnd.css",
11-
"dist/ng-tree-dnd.js"
12-
],
13-
"licence": "MIT",
14-
"keywords": [
15-
"angularjs",
16-
"bootstrap",
17-
"tree",
18-
"grid",
19-
"widget",
20-
"table",
21-
"dnd"
22-
],
23-
"repository": {
24-
"type": "git",
25-
"url": "git://github.com/thienhung1989/angular-tree-dnd"
26-
},
27-
"ignore": [
28-
"temp",
29-
"test",
30-
".jshintrc",
31-
".travis.yml",
32-
".bowerrc",
33-
".gitignore",
34-
"bower_components",
35-
"examples",
36-
"demo",
37-
"build",
38-
"guide",
39-
"node_modules",
40-
"source",
41-
"tasks",
42-
"tests",
43-
"gulpfile.js",
44-
"karma.conf.js",
45-
"src"
46-
],
47-
"dependencies": {
48-
"angular": ">=1.2.1"
49-
},
50-
"devDependencies": {
51-
"angular-mocks": ">=1.2.1",
52-
"angular-route": ">=1.2.1",
53-
"angular-animate": ">=1.2.1",
54-
"angular-bootstrap": "*",
55-
"bootstrap-css": "^3.3",
56-
"angularjs-toaster": "*"
57-
}
2+
"name": "angular-tree-dnd",
3+
"version": "3.0.7",
4+
"authors": [
5+
"Nguyễn Thiện Hùng"
6+
],
7+
"homepage": "https://github.com/thienhung1989/angular-tree-dnd",
8+
"description": "Display tree table (or list) & event DrapnDrop (allow drag multi tree-dnd include all type: table, ol, ul) by AngularJS",
9+
"main": [
10+
"dist/ng-tree-dnd.css",
11+
"dist/ng-tree-dnd.js"
12+
],
13+
"licence": "MIT",
14+
"keywords": [
15+
"angularjs",
16+
"bootstrap",
17+
"tree",
18+
"grid",
19+
"widget",
20+
"table",
21+
"dnd"
22+
],
23+
"repository": {
24+
"type": "git",
25+
"url": "git://github.com/thienhung1989/angular-tree-dnd"
26+
},
27+
"ignore": [
28+
"temp",
29+
"test",
30+
".jshintrc",
31+
".travis.yml",
32+
".bowerrc",
33+
".gitignore",
34+
"bower_components",
35+
"examples",
36+
"demo",
37+
"build",
38+
"guide",
39+
"node_modules",
40+
"source",
41+
"tasks",
42+
"tests",
43+
"gulpfile.js",
44+
"karma.conf.js",
45+
"src"
46+
],
47+
"dependencies": {
48+
"angular": ">=1.2.1"
49+
},
50+
"devDependencies": {
51+
"angular-mocks": ">=1.2.1",
52+
"angular-route": ">=1.2.1",
53+
"angular-animate": ">=1.2.1",
54+
"angular-bootstrap": "*",
55+
"bootstrap-css": "^3.3",
56+
"angularjs-toaster": "*"
57+
}
5858
}

0 commit comments

Comments
 (0)