Skip to content

Instantly share code, notes, and snippets.

@meleyal
Created January 19, 2012 17:52
Show Gist options
  • Save meleyal/1641439 to your computer and use it in GitHub Desktop.
Save meleyal/1641439 to your computer and use it in GitHub Desktop.
Backbone Bridge - jQuery syntax for creating Backbone views
# 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