Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
musonza committed Dec 9, 2018
1 parent 5f9d8f6 commit c75d462
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -47573,6 +47573,11 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
//
//
//
//
//
//
//
//

/* harmony default export */ __webpack_exports__["default"] = ({
data: function data() {
Expand Down Expand Up @@ -47670,7 +47675,7 @@ var render = function() {
"a",
{
staticClass: "text-danger",
attrs: { href: "#" },
attrs: { href: "#", title: "leave conversation" },
on: {
click: function($event) {
_vm.leaveConversation(convo.id)
Expand Down
7 changes: 6 additions & 1 deletion resources/js/components/ChatConversations.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
<a href="#" @click="showConversation(convo.id)">
<strong class="primary-font">Conversation {{ convo.id }}</strong>
</a>
<a href="#" class="text-danger" @click="leaveConversation(convo.id)">
<a
href="#"
class="text-danger"
title="leave conversation"
@click="leaveConversation(convo.id)"
>
<strong>x</strong>
</a>
</div>
Expand Down

0 comments on commit c75d462

Please sign in to comment.