I'm trying to add skype button to my project using AngularJS. Here's the code:
HTML:
<script type="text/javascript" src="http://www.skypeassets.com/i/scom/js/skype-uri.js"></script>
<skype-ui id="SkypeButton_Call_1" participants="participants">
</skype-ui>
AngularJs:
app.directive("skypeUi", function () {
return {
restrict: "E",
template: "<div></div>",
replace: true,
scope: {
participants: "="
},
link: function (scope, element, attrs) {
Skype.ui({
"name": "chat",
"element": attrs.id,
"participants": scope.participants,
"imageSize": 32
});
}
};
});
But when i click on that it opens skype window and in the same time shows an error message: "Please install Skype application in order to make this call or send a message." Thogh I aleady have skype installed on my system. Can you please tell me why does it shows like that?
Had the same issue... Problem is that
skype-uri.js
is written quite ugly...It exports global variable
Skype
, but it is not namespace with shared functions - it is object instance, and as I found - that instance can properly initialise only one Skype button... facepalm...To add another one you need to include that script once again(to create new instance of that object), or get constructor from that instance and create new one using it...
Here is working directive: