TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

onExternalMouseUp

onExternalMouseUp

The function called when the mouse button is released outside the plugin iframe.

Parameters:

This event doesn't have any parameters.

Example

Copy code
window.Asc.plugin.onExternalMouseUp = function () {
    var evt = document.createEvent("MouseEvents");
    evt.initMouseEvent("mouseup", true, true, window, 1, 0, 0, 0, 0, false, false, false, false, 0, null);
    document.dispatchEvent(evt);
};