Files
dogs/node_modules/browser-sync-ui/lib/plugins/help/help.client.js
ChloeChen0423 7c63f2f07b 前端代码
2025-05-12 16:42:36 +09:00

25 lines
495 B
JavaScript

(function (angular) {
const SECTION_NAME = "history";
angular
.module("BrowserSync")
.controller("HelpAboutController", [
"options",
"pagesConfig",
helpAboutController
]);
/**
* @param options
* @param pagesConfig
*/
function helpAboutController(options, pagesConfig) {
var ctrl = this;
ctrl.options = options.bs;
ctrl.section = pagesConfig[SECTION_NAME];
}
})(angular);