DerDu/SPHERE-Framework

View on GitHub
Common/Script/ModSlider.js

Summary

Maintainability
A
0 mins
Test Coverage
(function($)
{
    'use strict';
    $.fn.ModSlider = function(options)
    {
        // This is the easiest way to have default options.
        var settings = $.extend({

        }, options);

        this.bootstrapSlider(settings);
        return this;
    };

}(jQuery));