Skip to content

Instantly share code, notes, and snippets.

@tdreyno
Created November 25, 2009 23:58
Show Gist options
  • Save tdreyno/243110 to your computer and use it in GitHub Desktop.
Save tdreyno/243110 to your computer and use it in GitHub Desktop.
// In view
- (void)mouseEntered:(CPEvent)anEvent
{
_DOMElement.className = "photoview_hover";
}
- (void)mouseExited:(CPEvent)anEvent
{
_DOMElement.className = "";
}
// In CSS
.photoview_hover, .photoview_hover * { cursor: pointer; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment