Opal-Estate-Pro/node_modules/browser-sync-ui/lib/plugins/help/help.client.js
2019-09-13 09:44:33 +07: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);