You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a typo in the example of the documentation of the plugin. The 'clipboard' part is missing from the function calls. The example in the documentation did not work when using the phonegap build.
Incorrect example:
var text = "Hello World!";
window.plugins.copy(text);
window.plugins.paste(function (text) { alert(text); });
This is what it should be:
var text = "Hello World!";
window.plugins.clipboard.copy(text);
window.plugins.clipboard.paste(function (text) { alert(text); });
The text was updated successfully, but these errors were encountered:
There is a typo in the example of the documentation of the plugin. The 'clipboard' part is missing from the function calls. The example in the documentation did not work when using the phonegap build.
Incorrect example:
var text = "Hello World!";
window.plugins.copy(text);
window.plugins.paste(function (text) { alert(text); });
This is what it should be:
var text = "Hello World!";
window.plugins.clipboard.copy(text);
window.plugins.clipboard.paste(function (text) { alert(text); });
The text was updated successfully, but these errors were encountered: