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 /
components /
vi /
Delete
Unzip
Name
Size
Permission
Date
Action
vi-class.js
4.69
KB
-rw-r--r--
2018-01-23 10:35
vi-ios.less
0
B
-rw-r--r--
2018-01-23 10:35
vi-md.less
0
B
-rw-r--r--
2018-01-23 10:35
vi.js
1.61
KB
-rw-r--r--
2018-01-23 10:35
vi.less
1.26
KB
-rw-r--r--
2018-01-23 10:35
Save
Rename
import $ from 'dom7'; import Device from '../../utils/device'; import ViAd from './vi-class'; export default { name: 'vi', params: { vi: { enabled: false, autoplay: true, fallbackOverlay: true, fallbackOverlayText: 'Please watch this ad', showMute: true, startMuted: (Device.ios || Device.android) && !Device.cordova, appId: null, appVer: null, language: null, width: null, height: null, placementId: 'pltd4o7ibb9rc653x14', placementType: 'interstitial', videoSlot: null, showProgress: true, showBranding: true, os: null, osVersion: null, orientation: null, age: null, gender: null, advertiserId: null, latitude: null, longitude: null, accuracy: null, storeId: null, ip: null, manufacturer: null, model: null, connectionType: null, connectionProvider: null, }, }, create() { const app = this; app.vi = { sdkReady: false, createAd(adParams) { return new ViAd(app, adParams); }, loadSdk() { if (app.vi.skdReady) return; const script = document.createElement('script'); script.onload = function onload() { app.emit('viSdkReady'); app.vi.skdReady = true; }; script.src = 'http://c.vi-serve.com/viadshtml/vi.min.js'; $('head').append(script); }, }; }, on: { init() { const app = this; if (app.params.vi.enabled || (app.passedParams.vi && app.passedParams.vi.enabled !== false)) app.vi.loadSdk(); }, }, };