forked from nhn/tui.image-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dongsik Yoo
committed
Aug 29, 2017
1 parent
b2b015a
commit d2b4797
Showing
72 changed files
with
7,528 additions
and
11,644 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
{ | ||
"presets": ["es2015"] | ||
"presets": ["es2015"], | ||
"plugins": [ | ||
["transform-es2015-destructuring", {"loose": true}], | ||
["transform-es2015-for-of", {"loose": true}], | ||
["transform-es2015-spread", {"loose": true}] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module.exports = { | ||
"extends": "tui/es6", | ||
"env": { | ||
"browser": true, | ||
"amd": true, | ||
"node": true, | ||
"jasmine": true, | ||
"jquery": true, | ||
"es6": true | ||
}, | ||
"globals": { | ||
"fabric": true, | ||
"tui": true, | ||
"loadFixtures": true | ||
}, | ||
"parserOptions": { | ||
"sourceType": "module" | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,6 @@ demo | |
report | ||
*.vim | ||
test.html | ||
|
||
# Compiled files | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!-- | ||
Thank you for your contribution. | ||
When it comes to write an issue, please, use the template below. | ||
To use the template is mandatory for submit new issue and we won't reply the issue that without the template. | ||
And you can write template's contents in Korean also. | ||
--> | ||
|
||
<!-- TEMPLATE --> | ||
|
||
## Version | ||
<!-- Write the version of the grid you are currently using. --> | ||
|
||
## Development Environment | ||
<!-- Write the browser type, OS and so on --> | ||
|
||
## Current Behavior | ||
<!-- Write a description of the current operation. You can add example code, 'CodePen' or 'jsfiddle' links. --> | ||
|
||
```js | ||
// Write example code | ||
``` | ||
|
||
## Expected Behavior | ||
<!-- Write a description of the future action. --> |
Oops, something went wrong.