npm-gui
Version:
Graphic User Interface for NPM packages/tasks for front and back -end users.
19 lines (14 loc) • 385 B
JavaScript
(function() {
'use strict';
angular
.module('npm-gui')
.controller('ConsoleController', ConsoleController);
function ConsoleController(ConsoleService) {
var vm = this;
vm.clearConsole = clearConsole;
vm.log = ConsoleService.getLog();
function clearConsole() {
ConsoleService.clearLog();
}
}
})();