Skip to content

Commit

Permalink
Hotfix 0.7.7 (#137)
Browse files Browse the repository at this point in the history
* Chat widget is now be initialized with logged in user name and email

* bumped app version to 0.7.7
  • Loading branch information
jmiranda committed Apr 16, 2016
1 parent ce1f2b7 commit aa9bf1e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ app.grails.version=1.3.7
app.name=openboxes
app.revisionNumber=11160
app.servlet.version=2.4
app.version=0.7.6
app.version=0.7.7
plugins.barcode4j=0.2.1
plugins.bubbling=2.1.4
plugins.clickstream=0.2.0
Expand Down
9 changes: 9 additions & 0 deletions grails-app/views/layouts/custom.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,15 @@
type="text/javascript";e.parentNode.insertBefore($,e)})(document,"script");
</script>
<!--End of Zopim Live Chat Script-->

<g:if test="${session.user}">
<script>
$zopim(function() {
$zopim.livechat.setName('${session?.user?.name}');
$zopim.livechat.setEmail('${session?.user?.email}');
});
</script>
</g:if>
</g:if>
<r:layoutResources/>

Expand Down

0 comments on commit aa9bf1e

Please sign in to comment.