Viewing File: /usr/local/cpanel/base/frontend/jupiter/passwd/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;
};
}
);
Back to Directory
File Manager