%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.146 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/vendor/bower-asset/fullcalendar/tests/automated/legacy/ |
Upload File : |
import { View } from '@fullcalendar/core' describe('unselectAuto', function() { pushOptions({ selectable: true, defaultDate: '2014-12-25', defaultView: 'dayGridMonth' }) beforeEach(function() { $('<div id="otherthing" />').appendTo('body') }) afterEach(function() { $('#otherthing').remove() }) describe('when enabled', function() { pushOptions({ unselectAuto: true }) describe('when clicking away', function() { it('unselects the current selection when clicking elsewhere in DOM', function(done) { initCalendar({ unselect: function(arg) { expect($('.fc-highlight').length).toBe(0) expect('currentTarget' in arg.jsEvent).toBe(true) // a JS event expect(arg.view instanceof View).toBe(true) done() } }) currentCalendar.select('2014-12-01', '2014-12-03') expect($('.fc-highlight').length).toBeGreaterThan(0) $('#otherthing') .simulate('mousedown') .simulate('mouseup') .simulate('click') }) }) describe('when clicking another date', function() { it('unselects the current selection when clicking elsewhere in DOM', function(done) { initCalendar({ unselect: function(arg) { expect($('.fc-highlight').length).toBe(0) expect('currentTarget' in arg.jsEvent).toBe(true) // a JS event expect(arg.view instanceof View).toBe(true) done() } }) currentCalendar.select('2014-12-01', '2014-12-03') expect($('.fc-highlight').length).toBeGreaterThan(0) $('.fc-day[data-date="2014-12-04"]').simulate('drag') }) }) }) describe('when disabled', function() { pushOptions({ unselectAuto: false }) it('keeps current selection when clicking elsewhere in DOM', function() { initCalendar() currentCalendar.select('2014-12-01', '2014-12-03') expect($('.fc-highlight').length).toBeGreaterThan(0) $('#otherthing') .simulate('mousedown') .simulate('mouseup') .simulate('click') expect($('.fc-highlight').length).toBeGreaterThan(0) }) }) })