This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 2 files changed +8
-26
lines changed
2 files changed +8
-26
lines changed Original file line number Diff line number Diff line change @@ -412,6 +412,8 @@ Doc.prototype = {
412
412
self . html_usage_directiveInfo ( dom ) ;
413
413
self . html_usage_parameters ( dom ) ;
414
414
} ) ;
415
+
416
+ self . method_properties_events ( dom ) ;
415
417
} ,
416
418
417
419
html_usage_filter : function ( dom ) {
@@ -444,24 +446,6 @@ Doc.prototype = {
444
446
} ) ;
445
447
} ,
446
448
447
- html_usage_inputType : function ( dom ) {
448
- var self = this ;
449
- dom . h ( 'Usage' , function ( ) {
450
- dom . code ( function ( ) {
451
- dom . text ( '<input type="' + self . shortName + '"' ) ;
452
- ( self . param || [ ] ) . forEach ( function ( param ) {
453
- dom . text ( '\n ' ) ;
454
- dom . text ( param . optional ? ' [' : ' ' ) ;
455
- dom . text ( param . name ) ;
456
- dom . text ( BOOLEAN_ATTR [ param . name ] ? '' : '="..."' ) ;
457
- dom . text ( param . optional ? ']' : '' ) ;
458
- } ) ;
459
- dom . text ( '>' ) ;
460
- } ) ;
461
- self . html_usage_parameters ( dom ) ;
462
- } ) ;
463
- } ,
464
-
465
449
html_usage_directiveInfo : function ( dom ) {
466
450
var self = this ;
467
451
var list = [ ] ;
@@ -660,8 +644,6 @@ var KEYWORD_PRIORITY = {
660
644
'.angular.module.ng' : 7 ,
661
645
'.angular.mock' : 8 ,
662
646
'.angular.directive' : 6 ,
663
- '.angular.inputType' : 6 ,
664
- '.angular.widget' : 6 ,
665
647
'.angular.module.ngMock' : 8 ,
666
648
'.dev_guide.overview' : 1 ,
667
649
'.dev_guide.bootstrap' : 2 ,
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))\s*$/;
7
7
var inputType = {
8
8
9
9
/**
10
- * @ngdoc inputType
10
+ * @ngdoc directive
11
11
* @name angular.module.ng.$compileProvider.directive.input.text
12
12
*
13
13
* @description
@@ -73,7 +73,7 @@ var inputType = {
73
73
74
74
75
75
/**
76
- * @ngdoc inputType
76
+ * @ngdoc directive
77
77
* @name angular.module.ng.$compileProvider.directive.input.number
78
78
*
79
79
* @description
@@ -141,7 +141,7 @@ var inputType = {
141
141
142
142
143
143
/**
144
- * @ngdoc inputType
144
+ * @ngdoc directive
145
145
* @name angular.module.ng.$compileProvider.directive.input.url
146
146
*
147
147
* @description
@@ -206,7 +206,7 @@ var inputType = {
206
206
207
207
208
208
/**
209
- * @ngdoc inputType
209
+ * @ngdoc directive
210
210
* @name angular.module.ng.$compileProvider.directive.input.email
211
211
*
212
212
* @description
@@ -269,7 +269,7 @@ var inputType = {
269
269
270
270
271
271
/**
272
- * @ngdoc inputType
272
+ * @ngdoc directive
273
273
* @name angular.module.ng.$compileProvider.directive.input.radio
274
274
*
275
275
* @description
@@ -310,7 +310,7 @@ var inputType = {
310
310
311
311
312
312
/**
313
- * @ngdoc inputType
313
+ * @ngdoc directive
314
314
* @name angular.module.ng.$compileProvider.directive.input.checkbox
315
315
*
316
316
* @description
You can’t perform that action at this time.
0 commit comments