All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.bower_components.bootstrap-datepicker.tests.suites.noconflict.js Maven / Gradle / Ivy

module('NoConflict', {
    setup: function(){
        var datepicker = $.fn.datepicker.noConflict();
        $.fn.bootstrapDP = datepicker;
    },
    teardown: function(){
        $.fn.datepicker = $.fn.bootstrapDP;
        delete $.fn.bootstrapDP;
    }
});

test('Datepicker starts after calling noConflict() (no undefined defaults or locale_opts)', function(){
    $('
'+ ''+ ''+ '
') .appendTo('#qunit-fixture') .bootstrapDP(); expect(0); });




© 2015 - 2024 Weber Informatics LLC | Privacy Policy