docyes / modal

Backbone Bootstrap Modal View

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

modal

Backbone/Bootstrap Modal View

General Architecture:

Simple inheritable view class for modals (ModalView) Generic behavioral driver for bootstrap modal plugin (ModalDelegate)

define('HelloWorldModal', ['ModalView'], function(ModalView) {
     return Modalview.extend({
        initialize: function() {
            ModalView.prototype.initialize.apply(this, arguments);
        },
        render: function() {
            this.$el.html(this.template);
            this.$('.modal-body').html('w00t!');
            return this;
        }
     });
});

define(['HelloWorldModal'], function(HelloWorldModal) {
     var helloWorldModal = new HelloWorldModal({onhiddenRemove: true});
     helloWorldModal.append(helloWorldModal.render().el);
     helloWorldModal.show();
});

About

Backbone Bootstrap Modal View


Languages

Language:JavaScript 100.0%