Removed participant

This commit is contained in:
Sajal Sharma
2019-01-21 22:37:42 -08:00
parent 80e7a6041d
commit 431d2f86a1
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -24,7 +24,7 @@
Skype.ui({ Skype.ui({
"name": "call", "name": "call",
"element": "SkypeButton_Call_justinkimchi77_1", "element": "SkypeButton_Call_justinkimchi77_1",
"participants": ['live:emailtoosajal'] "participants": [] //Makes no call
}); });
</script> </script>
</div> </div>
+8
View File
@@ -0,0 +1,8 @@
function skypeCall(username)
{
Skype.ui({
"name": "call",
"element": "SkypeButton_Call_" + username + "_1",
"participants": [username]
})
}