From 8fb34f008eca4d1e15e6fa63902aaa36d199c4af Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 8 Mar 2012 16:19:56 -0800 Subject: fix(docs): directive events + cleanup --- docs/src/ngdoc.js | 22 ++-------------------- src/directive/input.js | 12 ++++++------ 2 files changed, 8 insertions(+), 26 deletions(-) diff --git a/docs/src/ngdoc.js b/docs/src/ngdoc.js index 4ea80bce..efd5afd8 100644 --- a/docs/src/ngdoc.js +++ b/docs/src/ngdoc.js @@ -412,6 +412,8 @@ Doc.prototype = { self.html_usage_directiveInfo(dom); self.html_usage_parameters(dom); }); + + self.method_properties_events(dom); }, html_usage_filter: function(dom){ @@ -444,24 +446,6 @@ Doc.prototype = { }); }, - html_usage_inputType: function(dom){ - var self = this; - dom.h('Usage', function() { - dom.code(function() { - dom.text(''); - }); - self.html_usage_parameters(dom); - }); - }, - html_usage_directiveInfo: function(dom) { var self = this; var list = []; @@ -660,8 +644,6 @@ var KEYWORD_PRIORITY = { '.angular.module.ng': 7, '.angular.mock': 8, '.angular.directive': 6, - '.angular.inputType': 6, - '.angular.widget': 6, '.angular.module.ngMock': 8, '.dev_guide.overview': 1, '.dev_guide.bootstrap': 2, diff --git a/src/directive/input.js b/src/directive/input.js index af446c6b..ae3fea1c 100644 --- a/src/directive/input.js +++ b/src/directive/input.js @@ -7,7 +7,7 @@ var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))\s*$/; var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.text * * @description @@ -73,7 +73,7 @@ var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.number * * @description @@ -141,7 +141,7 @@ var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.url * * @description @@ -206,7 +206,7 @@ var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.email * * @description @@ -269,7 +269,7 @@ var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.radio * * @description @@ -310,7 +310,7 @@ var inputType = { /** - * @ngdoc inputType + * @ngdoc directive * @name angular.module.ng.$compileProvider.directive.input.checkbox * * @description -- cgit v1.2.3