This commit is contained in:
vitalets 2013-10-05 13:53:10 +04:00
parent 99b9fc1873
commit dc7adc09ae

@ -26,10 +26,12 @@ bower install x-editable
## Reporting issues ## Reporting issues
When creating issues please provide [jsFiddle](http://jsfiddle.net) example. You can easily fork one of following: Please provide [jsFiddles](http://jsfiddle.net)!
1. [jsFiddle bootstrap template](http://jsfiddle.net/xBB5x/1817) Use these as template:
2. [jsFiddle jqueryui template](http://jsfiddle.net/xBB5x/196) 1. [jsFiddle bootstrap 3](http://jsfiddle.net/xBB5x/2265)
3. [jsFiddle jquery template](http://jsfiddle.net/xBB5x/197) 2. [jsFiddle bootstrap 2](http://jsfiddle.net/xBB5x/1817)
3. [jsFiddle jqueryui](http://jsfiddle.net/xBB5x/196)
4. [jsFiddle jquery](http://jsfiddle.net/xBB5x/197)
Your feedback is very appreciated! Your feedback is very appreciated!
## Contribution ## Contribution
@ -52,17 +54,27 @@ npm i
```` ````
vim editable-form.js vim editable-form.js
```` ````
5.Run tests: 5.Write some tests for your chnages:
````
vim /test/unit/*.js
````
6.Run tests:
```` ````
grunt test grunt test
```` ````
6.Commit and push back on github: or directly in browser:
````
grunt server
````
and open http://127.0.0.1:8000/test
7.Commit and push on github:
```` ````
git add . git add .
git commit -m'refactor editable form, fix #123' git commit -m'refactor editable form, fix #123'
git push origin git push origin
```` ````
7.Make pull request on github. 8.Make pull request on github.
Thanks for your support! Thanks for your support!