1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/dashboard-ui/cordova/sharingwidget.js

22 lines
446 B
JavaScript
Raw Normal View History

2015-07-02 01:08:05 -04:00
(function () {
function showMenu(options, successCallback, cancelCallback) {
2015-08-24 23:13:04 -04:00
var shareInfo = options.share;
2015-07-02 01:08:05 -04:00
2015-08-24 23:13:04 -04:00
window.plugins.socialsharing.share(shareInfo.Overview, shareInfo.Name, shareInfo.ImageUrl, shareInfo.Url, function () {
2015-07-02 01:08:05 -04:00
2015-08-24 23:13:04 -04:00
successCallback(options);
2015-07-02 01:08:05 -04:00
2015-08-24 23:13:04 -04:00
}, function () {
2015-07-02 01:08:05 -04:00
2015-08-24 23:13:04 -04:00
cancelCallback(options);
2015-07-02 01:08:05 -04:00
});
}
window.SharingWidget = {
showMenu: showMenu
};
})();