Skip to content

Instantly share code, notes, and snippets.

Created December 28, 2012 21:02
Show Gist options
  • Save anonymous/4401852 to your computer and use it in GitHub Desktop.
Save anonymous/4401852 to your computer and use it in GitHub Desktop.
var cm = require('context-menu');
var Item1 = cm.Item({
label: 'Label',
image: data.url('image.png')
});
Item1.on('click', function(context) {
// ...
});
Item1.on('show', function(context) {
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment