File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 76
76
** V1**
77
77
``` hbs
78
78
{{#sortable-group model=model onChange=(action "reorderItems") as |group|}}
79
- {{#each model.items as |item|}
79
+ {{#each model.items as |item|}}
80
80
...
81
81
{{/sortable-group}}
82
82
```
83
83
84
84
** V2**
85
85
``` hbs
86
86
{{#sortable-group groupModel=model model=model.items onChange=(action "reorderItems") as |group|}}
87
- {{#each group.model as |item|}
87
+ {{#each group.model as |item|}}
88
88
...
89
89
{{/sortable-group}}
90
90
```
102
102
1 . The ` drag ` and ` reorder ` test helpers are no longer global ` async ` helpers. They are now importable.
103
103
104
104
``` javascript
105
- import { drag , reorder } from ' ember-sortable/test-helpers
105
+ import { drag , reorder } from ' ember-sortable/test-helpers'
106
106
```
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ demo:
12
12
@echo " ===> Committing demo"
13
13
@echo " "
14
14
git add demo
15
- git commit -m " Build demo"
15
+ git commit -m " Build demo" --no-verify
16
16
@echo " "
17
17
@echo " ===> Pushing gh-pages"
18
18
@echo " "
19
- git push origin gh-pages -f
19
+ git push origin gh-pages -f --no-verify
20
20
@echo " "
21
21
@echo " ===> Cleaning up"
22
22
@echo " "
You can’t perform that action at this time.
0 commit comments