Remove unused ngdoc comments

This commit is contained in:
Damien Corneau 2015-06-18 14:28:07 +09:00
parent 25a3a631ce
commit 775f3ca23c
7 changed files with 0 additions and 58 deletions

View file

@ -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';

View file

@ -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 = [];

View file

@ -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;

View file

@ -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) {

View file

@ -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) */

View file

@ -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) {

View file

@ -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) {