mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-12 05:31:41 +00:00
update
This commit is contained in:
24
node_modules/browser-sync-ui/lib/plugins/help/help.client.js
generated
vendored
Normal file
24
node_modules/browser-sync-ui/lib/plugins/help/help.client.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
(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);
|
||||
|
Reference in New Issue
Block a user