How to Extend Twitter Bootstrap Plugin

后端 未结 5 1919
面向向阳花
面向向阳花 2020-11-27 02:43

I am digging into Twitter\'s Bootstrap and now want to try and add some functionality to the plugins, but I can\'t figure out how to do so. Using the modal plugin as an exa

5条回答
  •  日久生厌
    2020-11-27 03:38

    For anyone looking to do this with Bootstrap 3. The plugin layout has changed a bit the default options for all Bootstrap 3 plugins are attached to the plugins constructor:

    var _super = $.fn.modal;
    $.extend(_super.Constructor.DEFAULTS, {
           foo: 'bar',
           john: 'doe'
    });
    

提交回复
热议问题