Created
January 19, 2012 17:52
-
-
Save meleyal/1641439 to your computer and use it in GitHub Desktop.
Backbone Bridge - jQuery syntax for creating Backbone views
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Backbone.View + jquery.widget.bridge | |
# https://gist.github.com/1641439 | |
# | |
# Bridge Backbone views > jQuery.ui widget | |
# Allows instantiating BB views using jQuery | |
# e.g. $('.slideshow').slideshow() | |
# | |
# requires jquery.ui.widget | |
class window.Slideshow extends Backbone.View | |
initialize: (options) -> | |
console.log 'Slideshow#initialize' | |
console.log $(@el) | |
## | |
# Plugin definition | |
# | |
$.fn.slideshow = (options) -> | |
options ||= {} | |
slideshow = @data('slideshow') | |
if (!slideshow) | |
@each (idx, el) -> | |
options.el = el | |
$(el).data('slideshow', new Slideshow(options)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment