forked from angular/code.angularjs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages-data.js
6897 lines (6897 loc) · 422 KB
/
pages-data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Meta data used by the AngularJS docs app
angular.module('pagesData', [])
.value('NG_PAGES', {
"api/ng": {
"docType": "module",
"id": "module:ng",
"name": "ng",
"area": "api",
"outputPath": "partials/api/ng/index.html",
"path": "api/ng",
"searchTerms": {
"titleWords": "ng",
"keywords": "an and angular angularjs api application available below breakdown by components contains core default directives doc-module-components each essential filters for function high html is itself js level lists loaded module ng of partials services started table testing the this to validity_state_property when within",
"members": ""
}
},
"api/ng/function/angular.lowercase": {
"docType": "function",
"id": "module:ng.function:angular.lowercase",
"name": "angular.lowercase",
"area": "api",
"outputPath": "partials/api/ng/function/angular.lowercase.html",
"path": "api/ng/function/angular.lowercase",
"searchTerms": {
"titleWords": "angular.lowercase",
"keywords": "angular api be converted converts function html lowercase lowercased module ng partials specified string the to",
"members": ""
}
},
"api/ng/function/angular.uppercase": {
"docType": "function",
"id": "module:ng.function:angular.uppercase",
"name": "angular.uppercase",
"area": "api",
"outputPath": "partials/api/ng/function/angular.uppercase.html",
"path": "api/ng/function/angular.uppercase",
"searchTerms": {
"titleWords": "angular.uppercase",
"keywords": "angular api be converted converts function html module ng partials specified string the to uppercase uppercased",
"members": ""
}
},
"api/ng/function/angular.forEach": {
"docType": "function",
"id": "module:ng.function:angular.forEach",
"name": "angular.forEach",
"area": "api",
"outputPath": "partials/api/ng/function/angular.forEach.html",
"path": "api/ng/function/angular.forEach",
"searchTerms": {
"titleWords": "angular.forEach",
"keywords": "an and angular api array be because become can collection context does each either element expect filters for foreach function gender hasownproperty html in index inherited invoked invokes is it item iterate iterator js key log male method misko module name ng not noting obj object of once optional or over partials properties property push reference specifying that the this to toequal using value values var where which with worth",
"members": ""
}
},
"api/ng/function/angular.extend": {
"docType": "function",
"id": "module:ng.function:angular.extend",
"name": "angular.extend",
"area": "api",
"outputPath": "partials/api/ng/function/angular.extend.html",
"path": "api/ng/function/angular.extend",
"searchTerms": {
"titleWords": "angular.extend",
"keywords": "all angular api by can copying destination dst extend extends from function html module multiple ng object objects of partials properties reference source specify src the to you",
"members": ""
}
},
"api/ng/function/angular.noop": {
"docType": "function",
"id": "module:ng.function:angular.noop",
"name": "angular.noop",
"area": "api",
"outputPath": "partials/api/ng/function/angular.noop.html",
"path": "api/ng/function/angular.noop",
"searchTerms": {
"titleWords": "angular.noop",
"keywords": "angular api be calculateresult can code foo function functional html in js module ng no noop operations partials performs result style that the this useful var when writing",
"members": ""
}
},
"api/ng/function/angular.identity": {
"docType": "function",
"id": "module:ng.function:angular.identity",
"name": "angular.identity",
"area": "api",
"outputPath": "partials/api/ng/function/angular.identity.html",
"path": "api/ng/function/angular.identity",
"searchTerms": {
"titleWords": "angular.identity",
"keywords": "angular api argument code first function functional html identity in is its js module ng partials return returns style that the this transformer useful value when writing",
"members": ""
}
},
"api/ng/function/angular.isUndefined": {
"docType": "function",
"id": "module:ng.function:angular.isUndefined",
"name": "angular.isUndefined",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isUndefined.html",
"path": "api/ng/function/angular.isUndefined",
"searchTerms": {
"titleWords": "angular.isUndefined",
"keywords": "angular api check determines function html if is isundefined module ng partials reference to true undefined value",
"members": ""
}
},
"api/ng/function/angular.isDefined": {
"docType": "function",
"id": "module:ng.function:angular.isDefined",
"name": "angular.isDefined",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isDefined.html",
"path": "api/ng/function/angular.isDefined",
"searchTerms": {
"titleWords": "angular.isDefined",
"keywords": "angular api check defined determines function html if is isdefined module ng partials reference to true value",
"members": ""
}
},
"api/ng/function/angular.isObject": {
"docType": "function",
"id": "module:ng.function:angular.isObject",
"name": "angular.isObject",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isObject.html",
"path": "api/ng/function/angular.isObject",
"searchTerms": {
"titleWords": "angular.isObject",
"keywords": "an angular api are arrays be but check considered determines function html if in is isobject javascript module ng not note null object objects partials reference that to true typeof unlike value",
"members": ""
}
},
"api/ng/function/angular.isString": {
"docType": "function",
"id": "module:ng.function:angular.isString",
"name": "angular.isString",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isString.html",
"path": "api/ng/function/angular.isString",
"searchTerms": {
"titleWords": "angular.isString",
"keywords": "angular api check determines function html if is isstring module ng partials reference string to true value",
"members": ""
}
},
"api/ng/function/angular.isNumber": {
"docType": "function",
"id": "module:ng.function:angular.isNumber",
"name": "angular.isNumber",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isNumber.html",
"path": "api/ng/function/angular.isNumber",
"searchTerms": {
"titleWords": "angular.isNumber",
"keywords": "angular api check determines function html if is isnumber module ng number partials reference to true value",
"members": ""
}
},
"api/ng/function/angular.isDate": {
"docType": "function",
"id": "module:ng.function:angular.isDate",
"name": "angular.isDate",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isDate.html",
"path": "api/ng/function/angular.isDate",
"searchTerms": {
"titleWords": "angular.isDate",
"keywords": "angular api check date determines function html if is isdate module ng partials reference to true value",
"members": ""
}
},
"api/ng/function/angular.isArray": {
"docType": "function",
"id": "module:ng.function:angular.isArray",
"name": "angular.isArray",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isArray.html",
"path": "api/ng/function/angular.isArray",
"searchTerms": {
"titleWords": "angular.isArray",
"keywords": "an angular api array check determines function html if is isarray module ng partials reference to true value",
"members": ""
}
},
"api/ng/function/angular.isFunction": {
"docType": "function",
"id": "module:ng.function:angular.isFunction",
"name": "angular.isFunction",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isFunction.html",
"path": "api/ng/function/angular.isFunction",
"searchTerms": {
"titleWords": "angular.isFunction",
"keywords": "angular api check determines function html if is isfunction module ng partials reference to true value",
"members": ""
}
},
"api/ng/function/angular.isElement": {
"docType": "function",
"id": "module:ng.function:angular.isElement",
"name": "angular.isElement",
"area": "api",
"outputPath": "partials/api/ng/function/angular.isElement.html",
"path": "api/ng/function/angular.isElement",
"searchTerms": {
"titleWords": "angular.isElement",
"keywords": "angular api check determines dom element function html if is iselement jquery module ng partials reference to true value wrapped",
"members": ""
}
},
"api/ng/function/angular.copy": {
"docType": "function",
"id": "module:ng.function:angular.copy",
"name": "angular.copy",
"area": "api",
"outputPath": "partials/api/ng/function/angular.copy.html",
"path": "api/ng/function/angular.copy",
"searchTerms": {
"titleWords": "angular.copy",
"keywords": "all an and angular any api are array as be can copied copy created creates deep deleted destination elements example-example exception from function html identical if including into is it its make module must ng no not null object objects of or partials primitives properties provided returned same should source specified supplied that the then thrown to type undefined updated used was which will",
"members": ""
}
},
"api/ng/function/angular.equals": {
"docType": "function",
"id": "module:ng.function:angular.equals",
"name": "angular.equals",
"area": "api",
"outputPath": "partials/api/ng/function/angular.equals.html",
"path": "api/ng/function/angular.equals",
"searchTerms": {
"titleWords": "angular.equals",
"keywords": "all and angular api are arguments arrays as at begin being both but by compare compared comparing comparison consider considered determines domwindow during equal equals equivalent expression expressions false following function html identify if ignored is javascript least matches module names nan ng o1 o2 object objects of one only or partials pass properties property regular represent representation same scope supports textual that the their them to true two type types value values we when with",
"members": ""
}
},
"api/ng/function/angular.bind": {
"docType": "function",
"id": "module:ng.function:angular.bind",
"name": "angular.bind",
"area": "api",
"outputPath": "partials/api/ng/function/angular.bind.html",
"path": "api/ng/function/angular.bind",
"searchTerms": {
"titleWords": "angular.bind",
"keywords": "all also angular api application are args arguments as be becomes bind bindings bound call calls can context contrast_with_partial_function_application currying distinguished evaluated feature fn for from function html in is known module ng optional org partials prebound returns self should specified supply that the this to which wikipedia with wraps you",
"members": ""
}
},
"api/ng/function/angular.toJson": {
"docType": "function",
"id": "module:ng.function:angular.toJson",
"name": "angular.toJson",
"area": "api",
"outputPath": "partials/api/ng/function/angular.toJson.html",
"path": "api/ng/function/angular.toJson",
"searchTerms": {
"titleWords": "angular.toJson",
"keywords": "and angular api be characters contain function html if input internally into json json-formatted json-ified leading module newlines ng notation obj output partials pretty properties representing serialized serializes set since string stripped the this to tojson true uses whitespace will with",
"members": ""
}
},
"api/ng/function/angular.fromJson": {
"docType": "function",
"id": "module:ng.function:angular.fromJson",
"name": "angular.fromJson",
"area": "api",
"outputPath": "partials/api/ng/function/angular.fromJson.html",
"path": "api/ng/function/angular.fromJson",
"searchTerms": {
"titleWords": "angular.fromJson",
"keywords": "angular api deserialize deserialized deserializes fromjson function html json module ng partials string thingy to",
"members": ""
}
},
"api/ng/directive/ngApp": {
"docType": "directive",
"id": "module:ng.directive:ngApp",
"name": "ngApp",
"area": "api",
"outputPath": "partials/api/ng/directive/ngApp.html",
"path": "api/ng/directive/ngApp",
"searchTerms": {
"titleWords": "ngApp app",
"keywords": "$injector an and angular angularinit angularjs any api appcontroller application applications as auto auto-bootstrap auto-bootstrapped be below bootstrap bootstrapped can cannot code common compiled contain define dependencies designates directive document each easiest element example example-example1 first for found have html if in information instantiated instead into is load loaded manually module modules more most multiple must name near needed nested ng ngapp not of on one only optional or other page partials per placed resolved root run see should specify tags that the them then this to typically use used using way were when will within would you",
"members": ""
}
},
"api/ng/function/angular.bootstrap": {
"docType": "function",
"id": "module:ng.function:angular.bootstrap",
"name": "angular.bootstrap",
"area": "api",
"outputPath": "partials/api/ng/function/angular.bootstrap.html",
"path": "api/ng/function/angular.bootstrap",
"searchTerms": {
"titleWords": "angular.bootstrap",
"keywords": "$injector allow an and angular annotated api app application applications array as be been block bootstrap bootstrapped browser by cannot console created detect directive dom each element end-to-end example-multi-bootstrap first for function guide has html if in injector instances into invoked is it item load loaded manually module modules more multiple must name newly ng ngapp ngscenario-based note of on once only or otherwise partials predefined prevents report results returns root run script scripts see should start strange subsequent tests than that the they this to try up use warning where which will work",
"members": ""
}
},
"api/ng/object/angular.version": {
"docType": "object",
"id": "module:ng.object:angular.version",
"name": "angular.version",
"area": "api",
"outputPath": "partials/api/ng/object/angular.version.html",
"path": "api/ng/object/angular.version",
"searchTerms": {
"titleWords": "angular.version",
"keywords": "about an angular angularjs api as code codename contains current dot following full has html information jiggling-armfat major minor module name ng number object of partials properties release string such that the this version",
"members": ""
}
},
"api/ng/function/angular.injector": {
"docType": "function",
"id": "module:ng.function:angular.injector",
"name": "angular.injector",
"area": "api",
"outputPath": "partials/api/ng/function/angular.injector.html",
"path": "api/ng/function/angular.injector",
"searchTerms": {
"titleWords": "angular.injector",
"keywords": "$compile $digest $div $document $injector $rootscope access added after aliases an and angular angularjs api app append application arguments as auto be been block body bootstrapped but by can case compile containing could create creates current currently dependency directive do document element elements end example explicitly extra fairly fn_args following for from function functions get guide has html if implicit in inference inject injecting injection injector into invoke is it jquery js kick label library link list markup module modules must myctrl new ng ng-controller of off or outside partials party perhaps rare retrieving running scope see services some sometimes that the their then third this to type typical usage use used using var want we well you your",
"members": ""
}
},
"api/auto": {
"docType": "module",
"id": "module:auto",
"name": "auto",
"area": "api",
"outputPath": "partials/api/auto/index.html",
"path": "api/auto",
"searchTerms": {
"titleWords": "auto",
"keywords": "$injector added api auto automatically each fn_args gets html implicit module partials to which",
"members": ""
}
},
"api/auto/service/$injector": {
"docType": "service",
"id": "module:auto.service:$injector",
"name": "$injector",
"area": "api",
"outputPath": "partials/api/auto/service/$injector.html",
"path": "api/auto/service/$injector",
"searchTerms": {
"titleWords": "$injector",
"keywords": "$inject $injector $provide adding all always an and angular annotated annotating annotation annotations api are argument arguments array as auto be by call calling can change code createinjector defined definition dependency does equivalent expect explicit extracted following for function get have holds html if in inference inferred injection injector inline instances instantiate invoke is item javascript js last load methods minification minified module modules names needed not obfuscation object of on onto parameters parsed partials property provider retrieve return returns service servicea since specified the then these this to tobe tools tostring true types used valid var ways where with work works",
"members": "annotate get has instantiate invoke"
}
},
"api/auto/service/$provide": {
"docType": "service",
"id": "module:auto.service:$provide",
"name": "$provide",
"area": "api",
"outputPath": "partials/api/auto/service/$provide.html",
"path": "api/auto/service/$provide",
"searchTerms": {
"titleWords": "$provide",
"keywords": "$get $injector $provide accessed add additional also an and angular api are auto be by called calling can cases class components configuration constant contain correct created createinjector examples exposed factories factory finding fn for function functions get given has have helper holds html in individual information instance instantiate instantiated instantiating is it its many methods module more must need new no not number object of often on only options partials property provider providers register registering registers request responsible see service services singleton specifying than that the then there these they to turn using value when which whose will with without wrapped you",
"members": "constant decorator factory provider service value"
}
},
"api/ng/function/angular.element": {
"docType": "function",
"id": "module:ng.function:angular.element",
"name": "angular.element",
"area": "api",
"outputPath": "partials/api/ng/function/angular.element.html",
"path": "api/ng/function/angular.element",
"searchTerms": {
"titleWords": "angular.element",
"keywords": "$destroy $rootscope addclass additional after alert alert-success alias all allows also always an and angular angularjs any api api-compatible apis append are as associated attached attr available be before being bind bindings both built-in but by called calling camelcase can children class clean clone com commonly compatible contain contents controller cross-browser css current data default delegates destruction directive directly does dom domcontentloaded domelement dummy element elements empty eq event eventdata events extras find fired fires following footprint for found function functionality getter goal handlers hasclass having html if implements in inheriteddata injector intercepts into is isolate isolatescope it its jqlite jquery limited lite load lookups manipulate methods module most name namespaces needed never new next ng ng339 ngcontroller ngmodel nodes non-isolate not object of off on one only or original parent partials party passes prepend prop provided provides raw reached ready references remove removeattr removeclass removed removedata replacewith retrieved retrieves returns same scope selectors should simply small starts string subset support tag text that the then they this tiny to toggleclass top triggerhandler unbind until up use used val value very walks way which will with wrap wrapped wraps",
"members": ""
}
},
"api/ng/type/angular.Module": {
"docType": "type",
"id": "module:ng.type:angular.Module",
"name": "angular.Module",
"area": "api",
"outputPath": "partials/api/ng/type/angular.Module.html",
"path": "api/ng/type/angular.Module",
"searchTerms": {
"titleWords": "angular.Module",
"keywords": "angular api configuring for html interface module modules ng partials setupmoduleloader type",
"members": "animation config constant controller directive factory filter name provider requires run service value"
}
},
"api/ng/function/angular.module": {
"docType": "function",
"id": "module:ng.function:angular.module",
"name": "angular.module",
"area": "api",
"outputPath": "partials/api/ng/function/angular.module.html",
"path": "api/ng/function/angular.module",
"searchTerms": {
"titleWords": "angular.module",
"keywords": "$injector $locationprovider all an and angular api application appname argument arguments as auto available be being blocks bootstrap can collection config configfn configuration configure controllers core create created creating directive directives existing filters first for function further global hashprefix however html if information initialization injector inside is it js just like likely ll load mechanism module modules more must mycoolapp mymodule name new ng ngapp of one only optional or partials party passed place process providers register registered registering requires retrieve retrieved retrieving same service services should simplify specified that the then this to two unspecified use used using value var when with you your",
"members": ""
}
},
"api/ng/service/$anchorScroll": {
"docType": "service",
"id": "module:ng.service:$anchorScroll",
"name": "$anchorScroll",
"area": "api",
"outputPath": "partials/api/ng/service/$anchorScroll.html",
"path": "api/ng/service/$anchorScroll",
"searchTerms": {
"titleWords": "$anchorScroll",
"keywords": "$anchorscroll $anchorscrollprovider $location $rootscope $window according also anchor and any api be by called calling can changes checks current disableautoscrolling disabled element example-example2 function hash html in it match module ng of org partials related rules scrolls service spec specified the the-indicated-part-of-the-document this to value w3 watches when whenever",
"members": ""
}
},
"api/ng/provider/$animateProvider": {
"docType": "provider",
"id": "module:ng.provider:$animateProvider",
"name": "$animateProvider",
"area": "api",
"outputPath": "partials/api/ng/provider/$animateProvider.html",
"path": "api/ng/provider/$animateProvider",
"searchTerms": {
"titleWords": "$animateProvider",
"keywords": "$animate $animateprovider and animations any api be callbacks calls check default doesn dom done enable functional has html implementation in instead js just loaded module ng nganimate of order out partials perform performs provider see src synchronously that the to updates",
"members": "classnamefilter register"
}
},
"api/ng/service/$animate": {
"docType": "service",
"id": "module:ng.service:$animate",
"name": "$animate",
"area": "api",
"outputPath": "partials/api/ng/service/$animate.html",
"path": "api/ng/service/$animate",
"searchTerms": {
"titleWords": "$animate",
"keywords": "$animate $animator about adding and angularjs animation api as available be by classes click core css dom elements enable enabling for full functions here high-level hooks however html in included insert is javascript learn manipulation module more move must ng nganimate only operations otherwise out page partials perform provides remove removing rudimentary service simple support the this to used visit well which will within",
"members": "addclass enter leave move removeclass setclass"
}
},
"api/ng/service/$cacheFactory": {
"docType": "service",
"id": "module:ng.service:$cacheFactory",
"name": "$cacheFactory",
"area": "api",
"outputPath": "partials/api/ng/service/$cacheFactory.html",
"path": "api/ng/service/$cacheFactory",
"searchTerms": {
"titleWords": "$cacheFactory",
"keywords": "$cachefactory $cachefactoryprovider access all and another api behavior cache cached cacheid capacity constructs created creation destroy example-example3 expect factory following for from get gives html id info into it js key key-value lru methods miss module name new newly ng no nosuchcacheid not object objects of on options or pair partials properties put puts references remove removeall removes returns service set size specified specifies that the them this to tobe tobedefined toequal turns undefined value values var ve we with",
"members": "get info"
}
},
"api/ng/type/$cacheFactory.Cache": {
"docType": "type",
"id": "module:ng.type:$cacheFactory.Cache",
"name": "$cacheFactory.Cache",
"area": "api",
"outputPath": "partials/api/ng/type/$cacheFactory.Cache.html",
"path": "api/ng/type/$cacheFactory.Cache",
"searchTerms": {
"titleWords": "$cacheFactory.Cache",
"keywords": "$cachefactory $http and angular another api behave by cache cacheid data directive example expect factory function get html id info inject it js key like module ng object other partials primarily put remove removeall retrieve return script should size store super-cache supercache templates test the to tobeundefined toequal type used value",
"members": "destroy get info put remove removeall"
}
},
"api/ng/service/$templateCache": {
"docType": "service",
"id": "module:ng.service:$templateCache",
"name": "$templateCache",
"area": "api",
"outputPath": "partials/api/ng/service/$templateCache.html",
"path": "api/ng/service/$templateCache",
"searchTerms": {
"titleWords": "$templateCache",
"keywords": "$cachefactory $templatecache $templatecacheprovider adding angular api be below but by cache can consuming containing content definition directly document does first for get head html id in included into is it javascript js later load loaded module must myapp need ng ng-app ng-include not of or partials put quick retrieval retrieve run script see service simply tag template templateid templates text the this time to type use used var via you your",
"members": ""
}
},
"api/ng/service/$compile": {
"docType": "service",
"id": "module:ng.service:$compile",
"name": "$compile",
"area": "api",
"outputPath": "partials/api/ng/service/$compile.html",
"path": "api/ng/service/$compile",
"searchTerms": {
"titleWords": "$compile",
"keywords": "$attrs $compile $compileminerr $compileprovider $digest $element $observe $rootscope $sce $scope $set $transclude $watch about above access accessing accidentally actual advantage after alert alert-error alert-success alert-warning alias aliasing all allowing allows already also always among amount an and angular another any anything api applied apply appropriate are argument arguments around array as asking assigned associated assumed asynchronous at attach attempt attr attribute attributes attrs augment automatic automatically available avoid avoided be because been before behavior being below between bi-directional bind binding bound bracket but by call called caller calling can cannot case cases change changed changes channel child children class classes clone cloneattachfn cloned clonedelement clonelinkingfn comment common communicate communication compilation compile compiled compiler compiles compiling component components comprehensive config configuration console contain content contents context control controller controlleras controllers correct corresponding count create created creates creating creating-custom-directives_creating-directives_template-expanding-directive ctrl current data data-ng-bind deals declaration declared default defaults define defined defines definition deprecated derived desirable developer difference different differs directive directivedefinitionobject directivename directives do document does doesn dom done during each eacm easily effects efficient either element elements elm empty equivalent error errors evaluated example example-example4 examples exception execute executed execution exist exp expressed expression factory fail false first flag fn following for form found fourth fragment from function functions gentle get gets gettrustedresourceurl given greater guide hand handle has hash hasn have hello here how html iattrs ielement if illustrate imperatively in in-depth including increment infinite info information inherit inject injectable injected inside instance instantiated instead instructions inter inter-communication interpolated interpolation into introduction is isolate isolated it its itself js just keep know last least like link linked linking linkingfn list listener listeners loaded loading local localfn localmodel localname locals locate log logic loop lower major make makes manipulate manual manually many map markup matching maxpriority may migrates modify module most multiple must my-attr my-directive mymodule name names necessary need needs new next ng ng:bind ngbind ngmodel ngtransclude no nodes non_assignable_model_expression normal normalized not notation null number numerical object objects observe of often old omitted on one only optional options or order original other otherinjectables outer overflow overridden own parameter parent parentmodel parents partials pass passed passing phase place please point possible post post-link post-linking postlink practice pre pre-bound pre-link pre-linking prefix prefixed prelink priority private process produces properties property prototypically provided provides put raised rather read reason receives recommended recursively red-on-hover reference referenced reflect reflected registered registering registration release relying removed replace replacement representing request require required resides responsible restrict restricts result results return returning returns reusable reverse right root rule run safe same scope searching section see send service set setup share shared should sibling siblingdirectivename simplified since single so sometimes sort source specific specifically specified specify src stack state still string stringalias strings style subset such supports suspended takes tattrs telement template templateelement templates templateurl terminal testing testing-transclusion-directives than that the their them themselves then there therefore these this through throw time to together transclude transcludefn transclusion transformation transformations transforming tree true two typical typically undefined unspecified until up updated updating url use used useful uses using value values var variable variety very via view walking was watches way ways we well what when where which whole widget will with within working works would wrap wrapper x-ng-bind yet you",
"members": ""
}
},
"api/ng/provider/$compileProvider": {
"docType": "provider",
"id": "module:ng.provider:$compileProvider",
"name": "$compileProvider",
"area": "api",
"outputPath": "partials/api/ng/provider/$compileProvider.html",
"path": "api/ng/provider/$compileProvider",
"searchTerms": {
"titleWords": "$compileProvider",
"keywords": "$compileprovider $inject api function html module ng partials provider",
"members": "ahrefsanitizationwhitelist directive imgsrcsanitizationwhitelist"
}
},
"api/ng/type/$compile.directive.Attributes": {
"docType": "type",
"id": "module:ng.type:$compile.directive.Attributes",
"name": "$compile.directive.Attributes",
"area": "api",
"outputPath": "partials/api/ng/type/$compile.directive.Attributes.html",
"path": "api/ng/type/$compile.directive.Attributes",
"searchTerms": {
"titleWords": "$compile.directive.Attributes",
"keywords": "$compile all angular api are as attributes between binding compile contains current data-ng-bind directive dom element equivalent functions html in is linking module needed ng ng-bind ng:bind nodesetlinkingfn normalization normalized object of partials reflect shared since state the these treated type values which x-ng-bind",
"members": "$addclass $attr $observe $removeclass $set $updateclass"
}
},
"api/ng/provider/$controllerProvider": {
"docType": "provider",
"id": "module:ng.provider:$controllerProvider",
"name": "$controllerProvider",
"area": "api",
"outputPath": "partials/api/ng/provider/$controllerProvider.html",
"path": "api/ng/provider/$controllerProvider",
"searchTerms": {
"titleWords": "$controllerProvider",
"keywords": "$controller $controllerprovider allows angular api by controller controllers create html is method module new ng partials provider register registration service the this to used via",
"members": "register"
}
},
"api/ng/service/$controller": {
"docType": "service",
"id": "module:ng.service:$controller",
"name": "$controller",
"area": "api",
"outputPath": "partials/api/ng/service/$controller.html",
"path": "api/ng/service/$controller",
"searchTerms": {
"titleWords": "$controller",
"keywords": "$controller $controllerprovider $injector api auto be but call called can check com considered controller controllers current evaluating extracted following for function github given global html if injection instance instantiating into is it just locals module name ng object of on one otherwise override partials registered responsible retrieve returns scope service simple so steps string that the then this to used using version via which window with",
"members": ""
}
},
"api/ng/directive/a": {
"docType": "directive",
"id": "module:ng.directive:a",
"name": "a",
"area": "api",
"outputPath": "partials/api/ng/directive/a.html",
"path": "api/ng/directive/a",
"searchTerms": {
"titleWords": "a",
"keywords": "action additem any api attribute behavior causing change changing creation default directive easy empty href html htmlanchordirective is item links list location modifies module ng ng-click ngclick of or page partials permits prevented reloads so tag that the this when with without",
"members": ""
}
},
"api/ng/directive/ngHref": {
"docType": "directive",
"id": "module:ng.directive:ngHref",
"name": "ngHref",
"area": "api",
"outputPath": "partials/api/ng/directive/ngHref.html",
"path": "api/ng/directive/ngHref",
"searchTerms": {
"titleWords": "ngHref href",
"keywords": "an and angular any api attribute attributes be before behaviors broken can chance clicks com combinations contain correct different directive error example example-example5 go gravatar has href html http if in it its like likely link links make markup module most ng ng-click ng-href ngattributealiasdirectives nghref of partials problem replace replaces return shows solves string the their this to until url user using value various way which will with write wrong",
"members": ""
}
},
"api/ng/directive/ngSrc": {
"docType": "directive",
"id": "module:ng.directive:ngSrc",
"name": "ngSrc",
"area": "api",
"outputPath": "partials/api/ng/directive/ngSrc.html",
"path": "api/ng/directive/ngSrc",
"searchTerms": {
"titleWords": "ngSrc src",
"keywords": "angular any api attribute browser buggy can com contain correct directive doesn expression fetch from gravatar html http img in inside it like literal markup module ng ng-src ngattributealiasdirectives ngsrc partials problem replaces right solves src string text the this to until url using way which will with work write",
"members": ""
}
},
"api/ng/directive/ngSrcset": {
"docType": "directive",
"id": "module:ng.directive:ngSrcset",
"name": "ngSrcset",
"area": "api",
"outputPath": "partials/api/ng/directive/ngSrcset.html",
"path": "api/ng/directive/ngSrcset",
"searchTerms": {
"titleWords": "ngSrcset srcset",
"keywords": "angular any api attribute browser buggy can com contain correct directive doesn expression fetch from gravatar html http img in inside it like literal markup module ng ng-srcset ngattributealiasdirectives ngsrcset partials problem replaces right solves srcset string text the this to until url using way which will with work write",
"members": ""
}
},
"api/ng/directive/ngDisabled": {
"docType": "directive",
"id": "module:ng.directive:ngDisabled",
"name": "ngDisabled",
"area": "api",
"outputPath": "partials/api/ng/directive/ngDisabled.html",
"path": "api/ng/directive/ngDisabled",
"searchTerms": {
"titleWords": "ngDisabled disabled",
"keywords": "absence an and angular api as attribute attributes be because binding boolean browser browsers but button by chrome complementary directive disabled do does element enabled example-example6 expression false for guide html ie8 ies if information input interpolation into is isdisabled it lost make means module ng ng-init ngattributealiasdirectives ngdisabled not of older on partials permanent place presence preserve problem provides put reliable removed removes require scope set shouldn so solves special specification store such the their then this to true truthy values we when will would",
"members": ""
}
},
"api/ng/directive/ngChecked": {
"docType": "directive",
"id": "module:ng.directive:ngChecked",
"name": "ngChecked",
"area": "api",
"outputPath": "partials/api/ng/directive/ngChecked.html",
"path": "api/ng/directive/ngChecked",
"searchTerms": {
"titleWords": "ngChecked checked",
"keywords": "absence an and angular api as attribute attributes be binding boolean browser browsers by checked complementary directive does element example-example7 expression false for guide html if information input interpolation into is lost means module ng ngattributealiasdirectives ngchecked not of on partials permanent place presence preserve problem provides put reliable removed removes require set so solves special specification store such the their then this to true truthy values we when will would",
"members": ""
}
},
"api/ng/directive/ngReadonly": {
"docType": "directive",
"id": "module:ng.directive:ngReadonly",
"name": "ngReadonly",
"area": "api",
"outputPath": "partials/api/ng/directive/ngReadonly.html",
"path": "api/ng/directive/ngReadonly",
"searchTerms": {
"titleWords": "ngReadonly readonly",
"keywords": "absence an and angular api as attribute attributes be binding boolean browser browsers by complementary directive does element example-example8 expression false for guide html if information input interpolation into is lost means module ng ngattributealiasdirectives ngreadonly not of on partials permanent place presence preserve problem provides put readonly reliable removed removes require set so solves special specification store such the their then this to true truthy values we when will would",
"members": ""
}
},
"api/ng/directive/ngSelected": {
"docType": "directive",
"id": "module:ng.directive:ngSelected",
"name": "ngSelected",
"area": "api",
"outputPath": "partials/api/ng/directive/ngSelected.html",
"path": "api/ng/directive/ngSelected",
"searchTerms": {
"titleWords": "ngSelected selected",
"keywords": "absence an and angular api as attribute attributes be binding boolean browser browsers by complementary directive does element example-example9 expression false for guide html if information interpolation into is lost means module ng ngattributealiasdirectives ngselected not of on option partials permanent place presence preserve problem provides put reliable removed removes require selected set so solves special specification store such the their then this to true truthy values we when will would",
"members": ""
}
},
"api/ng/directive/ngOpen": {
"docType": "directive",
"id": "module:ng.directive:ngOpen",
"name": "ngOpen",
"area": "api",
"outputPath": "partials/api/ng/directive/ngOpen.html",
"path": "api/ng/directive/ngOpen",
"searchTerms": {
"titleWords": "ngOpen open",
"keywords": "absence an and angular api as attribute attributes be binding boolean browser browsers by complementary details directive does element example-example10 expression false for guide html if information interpolation into is lost means module ng ngattributealiasdirectives ngopen not of on open partials permanent place presence preserve problem provides put reliable removed removes require set so solves special specification store such the their then this to true truthy values we when will would",
"members": ""
}
},
"api/ng/type/form.FormController": {
"docType": "type",
"id": "module:ng.type:form.FormController",
"name": "form.FormController",
"area": "api",
"outputPath": "partials/api/ng/type/form.FormController.html",
"path": "api/ng/type/form.FormController",
"searchTerms": {
"titleWords": "form.FormController",
"keywords": "$dirty $error $inject $invalid $pristine $valid all already an and api are arrays as at being built-in containing control controls creates directive dirty each email error for form formcontroller forms given has hash html if instance interacted invalid is its keeps keys least max maxlength min minlength module name names nested ng not number object of one or partials pattern references required state such that the them to tokens track true type url user valid validation values well where with yet",
"members": "$addcontrol $dirty $error $invalid $pristine $removecontrol $setdirty $setpristine $setvalidity $valid"
}
},
"api/ng/directive/ngForm": {
"docType": "directive",
"id": "module:ng.directive:ngForm",
"name": "ngForm",
"area": "api",
"outputPath": "partials/api/ng/directive/ngForm.html",
"path": "api/ng/directive/ngForm",
"searchTerms": {
"titleWords": "ngForm form",
"keywords": "alias all allow any api be but capabilities controller controls determined directive does eac elements example for form formdirectivefactory forms group html if into is it its module name needs nest nestable nesting ng ngform not note of partials posting published purpose related replacement scope server specified sub-group tag the this to under useful validity will with",
"members": ""
}
},
"api/ng/directive/form": {
"docType": "directive",
"id": "module:ng.directive:form",
"name": "form",
"area": "api",
"outputPath": "partials/api/ng/directive/form.html",
"path": "api/ng/directive/form",
"searchTerms": {
"titleWords": "form",
"keywords": "action added after alias all allow allows an and angular animation animations any api application-specific applications apps are as associated attribute background be because been behaves browser browsers but button buttons called can cannot child classes classical click client-side color controller css current data default desirable detect different directive directives dirty do doesn double dynamically each element elements enclosing enter example example-example11 execution field fields first following for form formcontroller formdirectivefactory forms full generate generated handle handler has have hitting hook hooked hooks how however html identically if in include input inputs instantiates instead interpolation into invalid is it javascript js keep keyframes linear logic means method mind module more my-form name nest nested nesting ng ng-dirty ng-invalid ng-pristine ng-valid nganimate ngclass ngclick ngform ngrepeat ngsubmit no not of on one only onto or other outer page partials performed prevent preventing prevents pristine provides published reason red related reload removed rendered repeated role roundtrip rules scope sends server set should shows similar simple since so some specification specified specify style submission submit submitted submitting sure than that the then these they this to transition transitions translate trigger triggered triggers two type under unless use useful using utilize valid validated validation validations very way ways well what when which white will within work wrap you",
"members": ""
}
},
"api/ng/input/input[text]": {
"docType": "input",
"id": "module:ng.input:input[text]",
"name": "input[text]",
"area": "api",
"outputPath": "partials/api/ng/input/input[text].html",
"path": "api/ng/input/input[text]",
"searchTerms": {
"titleWords": "input[text]",
"keywords": "adds all and angular any api as assignable attribute automatically available be binding by changes constraint control controls data data-bind defined does due element elements entered error evaluates every example-text-input-directive executed expected expression expressions false feature for form html if ignored inherited inline input instead interaction is key longer match maxlength minlength module most name never ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not of offered or parameter partials pattern patterns property published regexp required scope set sets shorter standard text textinputtype than the this to trim true types under use user validation value want when which will with you",
"members": ""
}
},
"api/ng/input/input[number]": {
"docType": "input",
"id": "module:ng.input:input[number]",
"name": "input[number]",
"area": "api",
"outputPath": "partials/api/ng/input/input[number].html",
"path": "api/ng/input/input[number]",
"searchTerms": {
"titleWords": "input[number]",
"keywords": "adds and angular any api as assignable attribute be changes constraint control data-bind defined does due element entered error evaluates example-number-input-directive executed expected expression expressions for form greater html if inline input instead interaction is key less longer match max maxlength min minlength module name ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not number numberinputtype of or partials pattern patterns property published regexp required scope sets shorter text than the to transformation true under use user valid validation value want when which with you",
"members": ""
}
},
"api/ng/input/input[url]": {
"docType": "input",
"id": "module:ng.input:input[url]",
"name": "input[url]",
"area": "api",
"outputPath": "partials/api/ng/input/input[url].html",
"path": "api/ng/input/input[url]",
"searchTerms": {
"titleWords": "input[url]",
"keywords": "adds and angular any api as assignable attribute be changes constraint content control data-bind defined does due element entered error evaluates example-url-input-directive executed expected expression expressions for form html if inline input instead interaction is key longer match maxlength minlength module name ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not of or partials pattern patterns property published regexp required scope sets shorter text than the to true under url urlinputtype use user valid validation value want when which with you",
"members": ""
}
},
"api/ng/input/input[email]": {
"docType": "input",
"id": "module:ng.input:input[email]",
"name": "input[email]",
"area": "api",
"outputPath": "partials/api/ng/input/input[email].html",
"path": "api/ng/input/input[email]",
"searchTerms": {
"titleWords": "input[email]",
"keywords": "address adds and angular any api as assignable attribute be changes constraint control data-bind defined does due element email emailinputtype entered error evaluates example-email-input-directive executed expected expression expressions for form html if inline input instead interaction is key longer match maxlength minlength module name ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not of or partials pattern patterns property published regexp required scope sets shorter text than the to true under use user valid validation value want when which with you",
"members": ""
}
},
"api/ng/input/input[radio]": {
"docType": "input",
"id": "module:ng.input:input[radio]",
"name": "input[radio]",
"area": "api",
"outputPath": "partials/api/ng/input/input[radio].html",
"path": "api/ng/input/input[radio]",
"searchTerms": {
"titleWords": "input[radio]",
"keywords": "angular any api assignable be button changes control data-bind due element example-radio-input-directive executed expression form html input interaction is module name ng ngchange ngmodel ngvalue of partials property published radio radioinputtype selected set sets should the to under user value when which with",
"members": ""
}
},
"api/ng/input/input[checkbox]": {
"docType": "input",
"id": "module:ng.input:input[checkbox]",
"name": "input[checkbox]",
"area": "api",
"outputPath": "partials/api/ng/input/input[checkbox].html",
"path": "api/ng/input/input[checkbox]",
"searchTerms": {
"titleWords": "input[checkbox]",
"keywords": "angular any api assignable be changes checkbox checkboxinputtype control data-bind due element example-checkbox-input-directive executed expression form html input interaction is module name ng ngchange ngfalsevalue ngmodel ngtruevalue not of partials property published selected set should the to under user value when which with",
"members": ""
}
},
"api/ng/directive/textarea": {
"docType": "directive",
"id": "module:ng.directive:textarea",
"name": "textarea",
"area": "api",
"outputPath": "partials/api/ng/directive/textarea.html",
"path": "api/ng/directive/textarea",
"searchTerms": {
"titleWords": "textarea",
"keywords": "adds and angular any api are as assignable attribute automatically be changes constraint control data-bind data-binding defined directive does due element entered error evaluates exactly executed expected expression expressions false for form html if inline input inputdirective instead interaction is key longer match maxlength minlength module name ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not of or partials pattern patterns properties property published regexp required same scope set sets shorter textarea than the this those to trim true under use user validation value want when which will with you",
"members": ""
}
},
"api/ng/directive/input": {
"docType": "directive",
"id": "module:ng.directive:input",
"name": "input",
"area": "api",
"outputPath": "partials/api/ng/directive/input.html",
"path": "api/ng/directive/input",
"searchTerms": {
"titleWords": "input",
"keywords": "all and angular any api as assignable attribute automatically available be behavior browsers changes control controls data-bind data-binding defined directive does due element entered error every example-input-directive executed expected expression expressions false feature follows for form html html5 if ignored inline input inputdirective interaction is key longer match maxlength minlength module name never ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired not of offered older or parameter partials pattern patterns polyfills property published regexp required scope set sets shorter than the this to trim true types under user validation value when which will with",
"members": ""
}
},
"api/ng/type/ngModel.NgModelController": {
"docType": "type",
"id": "module:ng.type:ngModel.NgModelController",
"name": "ngModel.NgModelController",
"area": "api",
"outputPath": "partials/api/ng/type/ngModel.NgModelController.html",
"path": "api/ng/type/ngModel.NgModelController",
"searchTerms": {
"titleWords": "ngModel.NgModelController model",
"keywords": "$dirty $error $formatters $invalid $modelvalue $parsers $pristine $sanitize $sce $setvalidity $valid $viewchangelisteners $viewvalue $watches achieve actual additional against all already an and any api are arguments array as at attribute automatically bad be bound browser browsers by called can changed changes collaborate contain contains content contenteditable contents control controller convert css custom data-binding deals decide desired different directive directives display does dom each edited element error errors event events example example-ngmodelcontroller execute for format formatter formatting from function functions has hash here how however html html5 if ignored in include inline interacted invalid is it its js keys last least let like listener listening logic make marks model module next ng ng-model ngmodel ngmodelcontroller ngsanitize no not note notice object of older on onclick one or other parsers parsing partials passing pipeline place populate provide provided provides purposefully push reads related remove rendering required result return sanitize service services should shows state still string such tells that the there this through to together touppercase true turn type undefined unsafe update updates use used user using validation validity value values view we well whenever which will with work yet",
"members": "$dirty $error $formatters $invalid $isempty $modelvalue $parsers $pristine $render $setpristine $setvalidity $setviewvalue $valid $viewchangelisteners $viewvalue"
}
},
"api/ng/directive/ngModel": {
"docType": "directive",
"id": "module:ng.directive:ngModel",
"name": "ngModel",
"area": "api",
"outputPath": "partials/api/ng/directive/ngModel.html",
"path": "api/ng/directive/ngModel",
"searchTerms": {
"titleWords": "ngModel model",
"keywords": "added after all already an and animation animations any api are as associated attached background basic be been behavior best bind binding binds by can checkbox classes color com control created css current custom depending detect directive directives dirty doesn each element email errors evaluating example example-example12 examples exist exposed expression following for form given has hook hooked hooks how html if implicitly in include including input into invalid is it its itself js keep keeping keyframes linear mind model models module more my-input ng ng-dirty ng-invalid ng-pristine ng-valid nganimate ngclass ngmodel ngmodelcontroller ngmodeldirective note number of on or other parent partials performed practices pristine property providing radio red registering related removed rendered require required responsible scope see select set setting shows similar simple state style such sure text textarea that the these they this to transition transitions triggered try url use using utilize valid validated validation validations validity view way well when which white will with within work",
"members": ""
}
},
"api/ng/directive/ngChange": {
"docType": "directive",
"id": "module:ng.directive:ngChange",
"name": "ngChange",
"area": "api",
"outputPath": "partials/api/ng/directive/ngChange.html",
"path": "api/ng/directive/ngChange",
"searchTerms": {
"titleWords": "ngChange change",
"keywords": "api at be change changes coming directive element end evaluate evaluated event example-ngchange-directive expression form from given guide html immediately in input is javascript key leaves model module ng ngchange ngchangedirective ngmodel not note of onchange only or partials present presses requires return the this to triggers unlike upon user value when which",
"members": ""
}
},
"api/ng/directive/ngList": {
"docType": "directive",
"id": "module:ng.directive:ngList",
"name": "ngList",
"area": "api",
"outputPath": "partials/api/ng/directive/ngList.html",
"path": "api/ng/directive/ngList",
"searchTerms": {
"titleWords": "ngList list",
"keywords": "an and api array be between can comma converted converts default delimited delimiter directive example-nglist-directive expression fixed form html if in input into module ng nglist nglistdirective of optional or partials regular should specified split string strings text that the then to used value will",
"members": ""
}
},
"api/ng/directive/ngValue": {
"docType": "directive",
"id": "module:ng.directive:ngValue",
"name": "ngValue",
"area": "api",
"outputPath": "partials/api/ng/directive/ngValue.html",
"path": "api/ng/directive/ngValue",
"searchTerms": {
"titleWords": "ngValue value",
"keywords": "angular api as attribute be below binds bound buttons directive dynamically element example-ngvalue-directive expression generating given html input is lists module ng ng-repeat ngmodel ngvalue ngvaluedirective of or partials radio selected set shown so that the to useful using value when whose will",
"members": ""
}
},
"api/ng/directive/ngBind": {
"docType": "directive",
"id": "module:ng.directive:ngBind",
"name": "ngBind",
"area": "api",
"outputPath": "partials/api/ng/directive/ngBind.html",
"path": "api/ng/directive/ngBind",
"searchTerms": {
"titleWords": "ngBind bind",
"keywords": "ac alternative an and angular any api attribute be before below bindings box browser but by changes compiles content curly directive directly displayed don double element enter evaluate example-example13 expression given greeting guide html if in instantly instead invisible is it its less like live loading makes markup module momentarily name ng ngbind ngbinddirective ngcloak of page partials preferable preview problem raw replace similar since solution specified state tells template text that the this to typically update use user using value verbose when which while with would you",
"members": ""
}
},
"api/ng/directive/ngBindTemplate": {
"docType": "directive",
"id": "module:ng.directive:ngBindTemplate",
"name": "ngBindTemplate",
"area": "api",
"outputPath": "partials/api/ng/directive/ngBindTemplate.html",
"path": "api/ng/directive/ngBindTemplate",
"searchTerms": {
"titleWords": "ngBindTemplate bindtemplate",
"keywords": "and any api as attribute be box can cannot change contain content directive element elements enter eval example-example14 expressions form greeting here html in interpolation is it module multiple needed ng ngbind ngbindtemplate ngbindtemplatedirective of option partials replaced should since some span specifies template text that the this title to try unlike watch with",
"members": ""
}
},
"api/ng/directive/ngBindHtml": {
"docType": "directive",
"id": "module:ng.directive:ngBindHtml",
"name": "ngBindHtml",
"area": "api",
"outputPath": "partials/api/ng/directive/ngBindHtml.html",
"path": "api/ng/directive/ngBindHtml",
"searchTerms": {
"titleWords": "ngBindHtml bindhtml",
"keywords": "$sanitize $sce also an and angular any api are available be bind binding bound by bypass content contextual core creates current default dependencies directive do element ensure escaping evaluate evaluating example example-example15 exception explicitly exploit expression for functionality guide have html if in including innerhtml innerhtml-ed into is isn know may module ng ngbindhtml ngbindhtmldirective ngsanitize note of partials result safe sanitization sanitized secure see service so strict that the this to trustashtml trusted unavailable under using utilize value values via way will you your",
"members": ""
}
},
"api/ng/directive/ngClass": {
"docType": "directive",
"id": "module:ng.directive:ngClass",
"name": "ngClass",
"area": "api",
"outputPath": "partials/api/ng/directive/ngClass.html",
"path": "api/ng/directive/ngClass",
"searchTerms": {
"titleWords": "ngClass class",
"keywords": "$animate ac add addclass added all allows already an and animation animations any api applied apply are array as basic be before below bindings boolean but by can case changes class class-based classes corresponding css css3 databinding delimited demonstrates depending details different directive do duplicate during dynamically each element end eval evaluates evaluation even example example-example16 example-example17 expression follow for from get guide happens hinder how html idea if in is just key key-value map module more name names naming new ng nganimate ngclass ngclassdirective not object of on one only operates or pair partials particular perform pre-existing previously properties remove removeclass removed representing represents result set should space space-delimited start step still string structure supplementary supports sure that the then they this three to track transitions truthy types upon used using value values via view was ways what when which whose will with won you",
"members": ""
}
},
"api/ng/directive/ngClassOdd": {
"docType": "directive",
"id": "module:ng.directive:ngClassOdd",
"name": "ngClassOdd",
"area": "api",
"outputPath": "partials/api/ng/directive/ngClassOdd.html",
"path": "api/ng/directive/ngClassOdd",
"searchTerms": {
"titleWords": "ngClassOdd classodd",
"keywords": "ac an and any api applied array as be can class conjunction delimited directive directives effect eval evaluation exactly example-example18 except expression guide html in module names ng ngclass ngclasseven ngclassodd ngclassodddirective ngrepeat odd of on only or partials representing result rows scope space string take the they this to with within work",
"members": ""
}
},
"api/ng/directive/ngClassEven": {
"docType": "directive",
"id": "module:ng.directive:ngClassEven",
"name": "ngClassEven",
"area": "api",
"outputPath": "partials/api/ng/directive/ngClassEven.html",
"path": "api/ng/directive/ngClassEven",
"searchTerms": {
"titleWords": "ngClassEven classeven",
"keywords": "ac an and any api applied array as be can class conjunction delimited directive directives effect eval evaluation exactly example-example19 except expression guide html in module names ng ngclass ngclasseven ngclassevendirective ngclassodd ngrepeat odd of on only or partials representing result rows scope space string take the they this to with within work",
"members": ""
}
},
"api/ng/directive/ngCloak": {
"docType": "directive",
"id": "module:ng.directive:ngCloak",
"name": "ngCloak",
"area": "api",
"outputPath": "partials/api/ng/directive/ngCloak.html",
"path": "api/ng/directive/ngCloak",
"searchTerms": {
"titleWords": "ngCloak cloak",
"keywords": "above ac add addition all alternatively and angular angular-csp any api application applied apply are around as attribute avoid be being below best briefly browser browsers but by can cannot caused children class compilation compiled cooperation csp css deletes directive directives display displayed do document during effect element elements embedded encounters example example-example20 external file flicker following for form from head hidden html ie7 in included is it its js legacy like limitation loaded loading making match min mode module multiple must ng ng-cloak ngcloak ngcloakdirective ngcsp none not of page partials permit please portions preferred prevent progressive provide raw rendering result rule script section selector shown small so stylesheet support tagged template that the their they this to undesirable usage use used view visible when while with within work works x-ng-cloak you your",
"members": ""
}
},
"api/ng/directive/ngController": {
"docType": "directive",
"id": "module:ng.directive:ngController",
"name": "ngController",
"area": "api",
"outputPath": "partials/api/ng/directive/ngController.html",
"path": "api/ng/directive/ngController",
"searchTerms": {
"titleWords": "ngController controller",
"keywords": "$route $scope about access accessed accessible accessing adding advantages again also always an and angular any api appear application apply are as aspect attach attached attaches automatically avoiding be behind below binding bindings binds boilerplates business by called can cause changes class classes clearing code common community components contact contains controller controllers current data declaration declare declared declaring decorate definition demonstrates design different directive directly dom don easier easily editing element evaluates example example-ngcontroller example-ngcontrolleras executed expression for form from function functions generally globally greeting guide have here how however html if in included information inheritance injects inside instance into is it itself key logic makes manual markup masking methods mistake model model-view-controller models module more multiple mvc name need ng ng-controller ngcontroller ngcontrollerdirective ngroute note obvious of on one onto option or partials pattern primitives principles properties property propertyname prototypal published reflected removing rendered route scope scopes second service settings settingscontroller1 settingscontroller2 simple since source specifies specifying style styles supports syntax tab template that the there these this through to twice two update used user using values via view when where which will with without worry writing you your",
"members": ""
}
},
"api/ng/directive/ngCsp": {
"docType": "directive",
"id": "module:ng.directive:ngCsp",
"name": "ngCsp",
"area": "api",
"outputPath": "partials/api/ng/directive/ngCsp.html",
"path": "api/ng/directive/ngCsp",
"searchTerms": {
"titleWords": "ngCsp csp",
"keywords": "active all allowed an and angular angular-csp angularjs annoying api appears application apply applying apps are as attribute autodetect autodetection automatically available be because but cause chrome compatibility compatible console content csp csp-safe css custom data-ng-csp default-src developing differently directive directives do document don element enables error eval evaluate example explicitly expressions extensions fallback first following for forbids form from function functions generate generated getters google harmless how however html if in include includes inject inline into is javascript js like logged make manually mode module mozilla necessary need ng ng-app ng-csp ngcloak ngcsp no non non-csp not note of on only optimization optimized or org other partials policy prevent put raised refused root rules script script-src security self set showing shows slower so some source speed string stylesheet support tag than that the there things this those to tries triggers turn two unsafe-eval up use used uses value violations was we when whichever will work",
"members": ""
}
},
"api/ng/directive/ngClick": {
"docType": "directive",
"id": "module:ng.directive:ngClick",
"name": "ngClick",
"area": "api",
"outputPath": "partials/api/ng/directive/ngClick.html",
"path": "api/ng/directive/ngClick",
"searchTerms": {
"titleWords": "ngClick click",