Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
app /
framework7 /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
bezier.js
3.38
KB
-rw-r--r--
2018-01-23 10:36
class.js
5.08
KB
-rw-r--r--
2018-01-23 10:36
component.js
10.39
KB
-rw-r--r--
2018-01-23 10:36
constructor-methods.js
1010
B
-rw-r--r--
2018-01-23 10:36
device.js
3.01
KB
-rw-r--r--
2018-01-23 10:36
history.js
3.45
KB
-rw-r--r--
2018-01-23 10:36
modal-methods.js
880
B
-rw-r--r--
2018-01-23 10:36
request.js
9.07
KB
-rw-r--r--
2018-01-23 10:36
support.js
1.96
KB
-rw-r--r--
2018-01-23 10:36
utils.js
16.38
KB
-rw-r--r--
2018-01-23 10:36
Save
Rename
import $ from 'dom7'; import Utils from './utils'; import ConstructorMethods from './constructor-methods'; export default function (parameters = {}) { const { defaultSelector, constructor, app } = parameters; const methods = Utils.extend( ConstructorMethods({ defaultSelector, constructor, app, domProp: 'f7Modal', }), { open(el, animate) { const $el = $(el); let instance = $el[0].f7Modal; if (!instance) instance = new constructor(app, { el: $el }); return instance.open(animate); }, close(el = defaultSelector, animate) { const $el = $(el); if ($el.length === 0) return undefined; let instance = $el[0].f7Modal; if (!instance) instance = new constructor(app, { el: $el }); return instance.close(animate); }, } ); return methods; }