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