mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Remove unused ngdoc comments
This commit is contained in:
parent
25a3a631ce
commit
775f3ca23c
7 changed files with 0 additions and 58 deletions
|
|
@ -13,15 +13,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc function
|
||||
* @name zeppelinWebApp.controller:MainCtrl
|
||||
* @description
|
||||
* # MainCtrl
|
||||
* Controller of the zeppelinWebApp
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*/
|
||||
angular.module('zeppelinWebApp').controller('MainCtrl', function($scope, $rootScope, $window) {
|
||||
$rootScope.compiledScope = $scope.$new(true, $rootScope);
|
||||
$scope.looknfeel = 'default';
|
||||
|
|
|
|||
|
|
@ -15,13 +15,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc function
|
||||
* @name zeppelinWebApp.controller:InterpreterCtrl
|
||||
* @description
|
||||
* # InterpreterCtrl
|
||||
* Controller of interpreter, manage the note (update)
|
||||
*/
|
||||
angular.module('zeppelinWebApp').controller('InterpreterCtrl', function($scope, $route, $routeParams, $location, $rootScope,
|
||||
$http, baseUrlSrv) {
|
||||
var interpreterSettingsTmp = [];
|
||||
|
|
|
|||
|
|
@ -15,14 +15,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc function
|
||||
* @name zeppelinWebApp.controller:NotebookCtrl
|
||||
* @description
|
||||
* # NotebookCtrl
|
||||
* Controller of notes, manage the note (update)
|
||||
*
|
||||
*/
|
||||
angular.module('zeppelinWebApp').controller('NotebookCtrl', function($scope, $route, $routeParams, $location, $rootScope, $http, websocketMsgSrv, baseUrlSrv) {
|
||||
$scope.note = null;
|
||||
$scope.showEditor = false;
|
||||
|
|
|
|||
|
|
@ -15,15 +15,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc function
|
||||
* @name zeppelinWebApp.controller:ParagraphCtrl
|
||||
* @description
|
||||
* # ParagraphCtrl
|
||||
* Controller of the paragraph, manage everything related to the paragraph
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*/
|
||||
angular.module('zeppelinWebApp')
|
||||
.controller('ParagraphCtrl', function($scope,$rootScope, $route, $window, $element, $routeParams, $location,
|
||||
$timeout, $compile, websocketMsgSrv) {
|
||||
|
|
|
|||
|
|
@ -15,16 +15,6 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc function
|
||||
* @name zeppelinWebApp.controller:NavCtrl
|
||||
* @description
|
||||
* # NavCtrl
|
||||
* Controller of the top navigation, mainly use for the dropdown menu
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*/
|
||||
|
||||
angular.module('zeppelinWebApp').controller('NavCtrl', function($scope, $rootScope, $routeParams, notebookListDataFactory, websocketMsgSrv) {
|
||||
/** Current list of notes (ids) */
|
||||
|
||||
|
|
|
|||
|
|
@ -14,12 +14,6 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc directive
|
||||
* @name zeppelinWebApp.directive:delete
|
||||
* @description
|
||||
* # ngDelete
|
||||
*/
|
||||
angular.module('zeppelinWebApp').directive('ngDelete', function() {
|
||||
return function(scope, element, attrs) {
|
||||
element.bind('keydown keyup', function(event) {
|
||||
|
|
|
|||
|
|
@ -13,15 +13,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* @ngdoc directive
|
||||
* @name zeppelinWebApp.directive:ngEnter
|
||||
* @description
|
||||
* # ngEnter
|
||||
* Bind the <enter> event
|
||||
*
|
||||
* @author anthonycorbacho
|
||||
*/
|
||||
angular.module('zeppelinWebApp').directive('ngEnter', function() {
|
||||
return function(scope, element, attrs) {
|
||||
element.bind('keydown keypress', function(event) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue