%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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 : /proc/11585/cwd/html/ppaobm/vendor/webcreate/jquery-ias/test/ |
Upload File : |
describe('IAS', function () { before(function () { var deferred = when.defer(); this.timeout = 10000; loadFixture('multiple1.html', function () { [$('.overflow1'), $('.overflow2')].forEach(function ($overflow) { $overflow.ias({ container: '.container', item: '.item', pagination: '.pagination', next: '.next', }); deferred.resolve(); }); }); return deferred.promise; }); after(function() { jQuery.ias('destroy'); }); function runTest(scrollMoreSelector, scrollLessSelector) { var deferred = when.defer(); scrollDown(100, $(scrollMoreSelector)).then(function () { wait(1000).then(function () { expect($(scrollMoreSelector).find('.item').length).toEqual(20); expect($(scrollLessSelector).find('.item').length).toEqual(10); scrollDown(100, $(scrollLessSelector)).then(function () { wait(1000).then(function () { expect($(scrollMoreSelector).find('.item').length).toEqual(20); expect($(scrollLessSelector).find('.item').length).toEqual(20); scrollDown(100, $(scrollMoreSelector)).then(function () { wait(1000).then(function () { expect($(scrollMoreSelector).find('.item').length).toEqual(30); expect($(scrollLessSelector).find('.item').length).toEqual(20); deferred.resolve(); }); }); }); }); }); }); return deferred.promise; } it('should scroll the first more', function () { return runTest('.overflow1', '.overflow2'); }); it('should scroll the second more', function () { return runTest('.overflow2', '.overflow1'); }); });