Skip to content

Commit

Permalink
Add examples to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
worm-emoji committed Dec 6, 2015
1 parent b5ec971 commit f857a12
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# cordova-plugin-detect-screenshot
Detects screenshots on Cordova for iOS
Detects screenshots on Cordova for iOS. The plugin will only work on devices with iOS > 7, however feel free to include this plugin in projects with a lower target than iOS 7. The plugin checks the iOS version before listening for events, so it won't break anything.

## Installation
`cordova plugin add cordova-plugin-detect-screenshot`

## Usage
When a screenshot occurs, a 'screenshot' event is triggered. Simply listen for this event in your javascript.

document.addEventListener("screenshot", function() {
window.alert("Screenshot");
}, false);

## License
MIT.

0 comments on commit f857a12

Please sign in to comment.