Sha256: fef89685dd13cd6b00138279800f1460dca34d664d03321a9029a7d3c2fedbae

Contents?: true

Size: 1.45 KB

Versions: 1

Compression:

Stored size: 1.45 KB

Contents

module('Keyboard Navigation (All)', {
    setup: function(){
        this.input = $('<input type="text">')
                        .appendTo('#qunit-fixture')
                        .datepicker({format: "dd-mm-yyyy"})
                        .focus(); // Activate for visibility checks
        this.dp = this.input.data('datepicker');
        this.picker = this.dp.picker;
    },
    teardown: function(){
        this.picker.remove();
    }
});

test('TAB hides picker', function(){
    var target;

    ok(this.picker.is(':visible'), 'Picker is visible');

    this.input.trigger({
        type: 'keydown',
        keyCode: 9
    });

    ok(this.picker.is(':not(:visible)'), 'Picker is hidden');
});

test('by day (right/left arrows) with daysOfWeekDisabled', function(){
    var target;

    this.input.val('04-03-2013');
    this.dp.setDaysOfWeekDisabled('0,6');
    this.dp.update();

    this.input.focus();

    // Navigation: -1 day left arrow key
    this.input.trigger({
        type: 'keydown',
        keyCode: 37
    });

    datesEqual(this.dp.viewDate, UTCDate(2013, 2, 1));
});

test('by day (right/left arrows) with datesDisabled', function(){
    var target;

    this.input.val('04-03-2013');
    this.dp.setDatesDisabled(['05-03-2013']);
    this.dp.update();

    this.input.focus();

    // Navigation: +1 day right arrow key
    this.input.trigger({
        type: 'keydown',
        keyCode: 39
    });

    datesEqual(this.dp.viewDate, UTCDate(2013, 2, 6));
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jinda_lte-0.0.1 lib/generators/jinda_lte/templates/app/assets/jinda_assets/bower_components/bootstrap-datepicker/tests/suites/keyboard_navigation/all.js