VersoSolutions / CordovaClipboard

Clipboard management plugin for Cordova/PhoneGap
MIT License
144 stars 257 forks source link

Mistake in documentation #3

Closed konstantinov closed 10 years ago

konstantinov commented 10 years ago

It seems to be mistake in documentation:

var text = "Hello World!";

window.plugins.copy(text);

window.plugins.paste(function (text) { alert(text); });

should be

var text = "Hello World!";

window.plugins.clipboard.copy(text);

window.plugins.clipboard.paste(function (text) { alert(text); });
ctrevisan commented 10 years ago

Thanks, the documentation was recently corrected. The plugin is now added as cordova.plugins.clipboard.