Skip to content

Commit 775f3ca

Browse files
committed
Remove unused ngdoc comments
1 parent 25a3a63 commit 775f3ca

File tree

7 files changed

+0
-58
lines changed

7 files changed

+0
-58
lines changed

zeppelin-web/src/app/app.controller.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@
1313
*/
1414
'use strict';
1515

16-
/**
17-
* @ngdoc function
18-
* @name zeppelinWebApp.controller:MainCtrl
19-
* @description
20-
* # MainCtrl
21-
* Controller of the zeppelinWebApp
22-
*
23-
* @author anthonycorbacho
24-
*/
2516
angular.module('zeppelinWebApp').controller('MainCtrl', function($scope, $rootScope, $window) {
2617
$rootScope.compiledScope = $scope.$new(true, $rootScope);
2718
$scope.looknfeel = 'default';

zeppelin-web/src/app/interpreter/interpreter.controller.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@
1515
*/
1616
'use strict';
1717

18-
/**
19-
* @ngdoc function
20-
* @name zeppelinWebApp.controller:InterpreterCtrl
21-
* @description
22-
* # InterpreterCtrl
23-
* Controller of interpreter, manage the note (update)
24-
*/
2518
angular.module('zeppelinWebApp').controller('InterpreterCtrl', function($scope, $route, $routeParams, $location, $rootScope,
2619
$http, baseUrlSrv) {
2720
var interpreterSettingsTmp = [];

zeppelin-web/src/app/notebook/notebook.controller.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@
1515
*/
1616
'use strict';
1717

18-
/**
19-
* @ngdoc function
20-
* @name zeppelinWebApp.controller:NotebookCtrl
21-
* @description
22-
* # NotebookCtrl
23-
* Controller of notes, manage the note (update)
24-
*
25-
*/
2618
angular.module('zeppelinWebApp').controller('NotebookCtrl', function($scope, $route, $routeParams, $location, $rootScope, $http, websocketMsgSrv, baseUrlSrv) {
2719
$scope.note = null;
2820
$scope.showEditor = false;

zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,6 @@
1515
*/
1616
'use strict';
1717

18-
/**
19-
* @ngdoc function
20-
* @name zeppelinWebApp.controller:ParagraphCtrl
21-
* @description
22-
* # ParagraphCtrl
23-
* Controller of the paragraph, manage everything related to the paragraph
24-
*
25-
* @author anthonycorbacho
26-
*/
2718
angular.module('zeppelinWebApp')
2819
.controller('ParagraphCtrl', function($scope,$rootScope, $route, $window, $element, $routeParams, $location,
2920
$timeout, $compile, websocketMsgSrv) {

zeppelin-web/src/components/navbar/navbar.controller.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,6 @@
1515

1616
'use strict';
1717

18-
/**
19-
* @ngdoc function
20-
* @name zeppelinWebApp.controller:NavCtrl
21-
* @description
22-
* # NavCtrl
23-
* Controller of the top navigation, mainly use for the dropdown menu
24-
*
25-
* @author anthonycorbacho
26-
*/
27-
2818
angular.module('zeppelinWebApp').controller('NavCtrl', function($scope, $rootScope, $routeParams, notebookListDataFactory, websocketMsgSrv) {
2919
/** Current list of notes (ids) */
3020

zeppelin-web/src/components/ngdelete/ngdelete.directive.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@
1414

1515
'use strict';
1616

17-
/**
18-
* @ngdoc directive
19-
* @name zeppelinWebApp.directive:delete
20-
* @description
21-
* # ngDelete
22-
*/
2317
angular.module('zeppelinWebApp').directive('ngDelete', function() {
2418
return function(scope, element, attrs) {
2519
element.bind('keydown keyup', function(event) {

zeppelin-web/src/components/ngenter/ngenter.directive.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,6 @@
1313
*/
1414
'use strict';
1515

16-
/**
17-
* @ngdoc directive
18-
* @name zeppelinWebApp.directive:ngEnter
19-
* @description
20-
* # ngEnter
21-
* Bind the <enter> event
22-
*
23-
* @author anthonycorbacho
24-
*/
2516
angular.module('zeppelinWebApp').directive('ngEnter', function() {
2617
return function(scope, element, attrs) {
2718
element.bind('keydown keypress', function(event) {

0 commit comments

Comments
 (0)