Commit 406deaecb973fa55f826d68752257d92b31706ad
1 parent
8f88e39ed4
Exists in
master
state change
Showing
2 changed files
with
2 additions
and
4 deletions
Show diff stats
app/partials/ContactView/ContactView.html
... | ... | @@ -77,7 +77,7 @@ |
77 | 77 | </tr> |
78 | 78 | </thead> |
79 | 79 | <tbody> |
80 | - <tr ng-repeat="contact in contactList"> | |
80 | + <tr ng-repeat="contact in contactList" style="cursor: pointer;" ui-sref="app.viewContact({id : contact.id})"> | |
81 | 81 | <td>{{contact.lastName}}</td> |
82 | 82 | <td>{{contact.firstName}}</td> |
83 | 83 | <td>{{contact.owner.companyName}}</td> | ... | ... |
app/partials/viewCompany/viewCompany.html
... | ... | @@ -305,12 +305,10 @@ |
305 | 305 | </tr> |
306 | 306 | </thead> |
307 | 307 | <tbody> |
308 | - <tr ng-repeat="contact in companyContactList"> | |
308 | + <tr ng-repeat="contact in companyContactList" style="cursor: pointer;" ui-sref="app.viewContact({id : contact.id})"> | |
309 | 309 | <td><toggle ng-model="contact.priceEmail" size="customToogle"></toggle></td> |
310 | 310 | <td> |
311 | - <a href="#!/viewContact/{{contact.id}}"> | |
312 | 311 | {{contact.firstName}} |
313 | - </a> | |
314 | 312 | </td> |
315 | 313 | <td>{{contact.lastName}}</td> |
316 | 314 | <td>{{contact.title}}</td> | ... | ... |