Merge branch 'saas' into cc-5709-airtime-analyzer-cloud-storage-saas

This commit is contained in:
drigato 2015-01-13 14:23:51 -05:00
commit d99147bad4
10 changed files with 60 additions and 35 deletions

View file

@ -5,7 +5,9 @@ function setupLiveChat() {
// this is where we pass custom variables to livechat;
// only pass the client id assigned by WHMCS for now
__lc.params = [
{ name: 'client_id', value: livechat_client_id }
{ name: 'client_id', value: livechat_client_id },
{ name: 'plan_type', value: livechat_plan_type},
{ name: 'station_url', value: livechat_station_url}
];
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
@ -15,4 +17,4 @@ function setupLiveChat() {
$(document).ready(function() {
setupLiveChat();
});
});