Skip to content

Commit

Permalink
feat: renamed CRUD attributes and params
Browse files Browse the repository at this point in the history
- `collection` to `array`
- `name` to `key`
- `document_id` to `object`
  • Loading branch information
frankpagan committed Aug 8, 2023
1 parent f23944c commit d9fc398
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<div id="board" class="display:flex overflow:auto">
<div
array="testtags"
document
object
filter-sort-key="position"
render_id="column"
droppable
Expand All @@ -50,7 +50,7 @@
</div>
<div>
<a
actions="deletedocument="
actions="deleteObject"
array="{{column.array}}"
object="{{column._id}}"
><i
Expand Down Expand Up @@ -80,7 +80,7 @@
object="{{object._id}}"
draggable>
<a
actions="deletedocument="
actions="deleteObject"
array="{{object.array}}"
object="{{object._id}}"
class="position:absolute right:15px top:15px"
Expand Down

0 comments on commit d9fc398

Please sign in to comment.