0.3.3 • Published 13 years ago
backbone.avgrund v0.3.3
Excellent Avgrund modal concept by @hakimel packaged as Backbone.View.
Avgrund = require 'backbone.avgrund'
class MyModal extends Avgrund
  render: ->
    this.$el.html """
      <p>Hello, world</p>
      """
    this
myModal = new MyModal()
myModal.render()
$(document.body).append myModal.el