📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
/* # passwd/index.js Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited */ /* global require: false, define: false */ /* jshint -W098 */ define( [ "angular", "cjt/core", "cjt/modules", "uiBootstrap" ], function(angular, CJT) { "use strict"; return function() { // First create the application angular.module("App", ["ui.bootstrap", "cjt2.cpanel"]); // Then load the application dependencies var app = require( [ "cjt/bootstrap", "cjt/directives/alertList", "app/views/ExternalAuthController", "app/services/ExternalAuthService", ], function(BOOTSTRAP) { angular.module("App"); BOOTSTRAP("#content", "App"); }); return app; }; } );
Save