Skip to content

Commit

Permalink
Toast Overview Demo - Unified Display Time For Vue & Angular (#3145)
Browse files Browse the repository at this point in the history
* Unify Toast (Vue & Angular)

Added 600 ms display time for Vue and Angular toast

* Revert "Unify Toast (Vue & Angular)"

This reverts commit 84f2e34.

* Unify Toast (Vue & Angular)

Added 600ms display to Vue and Angular Toast

* Remove Variable Bracket (Angular)

* Remove Variable Semicolon (Vue)

* Update app.component.html

* Bring Variable Semicolon
  • Loading branch information
jdvictoria authored Feb 28, 2024
1 parent 2dc2d35 commit 2566878
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion JSDemos/Demos/Toast/Overview/Angular/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
</dx-check-box>
</li>
</ul>
<dx-toast [(visible)]="isVisible" [type]="type" [message]="message">
<dx-toast
[(visible)]="isVisible"
[type]="type"
[message]="message"
displayTime="600"
>
</dx-toast>
</div>
1 change: 1 addition & 0 deletions JSDemos/Demos/Toast/Overview/Vue/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
v-model:visible="isVisible"
v-model:message="message"
v-model:type="type"
:display-time="600"
/>
</div>
</template>
Expand Down

0 comments on commit 2566878

Please sign in to comment.