Skip to content

Instantly share code, notes, and snippets.

@pivotal-casebook
Created February 13, 2015 19:25
Show Gist options
  • Save pivotal-casebook/530604b1b32d866cae42 to your computer and use it in GitHub Desktop.
Save pivotal-casebook/530604b1b32d866cae42 to your computer and use it in GitHub Desktop.
data-presents old vs. new style
// Given this HTML:
// <div data-presents='foobar'></div>
// Old style
// Usually written by passing org.casebook.views
// to an anonymous function as `ns`.
org.casebook.views('foobar', {
initialize: function() {
var el = this
},
})
// New style
$(document).bind('foobar:present', function(event) {
var el = event.target
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment