This repository was archived by the owner on Apr 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 743
/
Copy pathpages-data.js
8779 lines (8779 loc) · 435 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": "angular angularjs api application breakdown components core default directives doc-module-components essential filters function high html js js-angular-release level lists loaded module ng partials services src started table testing"
}
},
"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 converted converts function html js js-angular-release lowercase lowercased module ng partials src string"
}
},
"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 converted converts function html js js-angular-release module ng partials src string uppercase uppercased"
}
},
"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": "angular api array collection context element expect filters foreach function gender hasownproperty html inherited invoked invokes item iterate iterator js js-angular-release key log male method misko module ng noting obj object optional partials properties property push reference src toequal values var worth"
}
},
"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": "angular api copying destination dst extend extends function html js js-angular-release module multiple ng object objects partials properties reference source src"
}
},
"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 calculateresult code foo function functional html js js-angular-release module ng noop operations partials performs result src style var writing"
}
},
"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 function functional html identity js js-angular-release module ng partials return returns src style transformer writing"
}
},
"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 isundefined js js-angular-release module ng partials reference src true undefined"
}
},
"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 isdefined js js-angular-release module ng partials reference src true"
}
},
"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": "angular api arrays check considered determines function html isobject javascript js js-angular-release module ng note null object objects partials reference src true typeof"
}
},
"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 isstring js js-angular-release module ng partials reference src string true"
}
},
"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 isnumber js js-angular-release module ng number partials reference src true"
}
},
"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 determines function html isdate js js-angular-release module ng partials reference src true"
}
},
"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": "angular api array check determines function html isarray js js-angular-release module ng partials reference src true"
}
},
"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 isfunction js js-angular-release module ng partials reference src true"
}
},
"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 iselement jquery js js-angular-release module ng partials reference src true wrapped"
}
},
"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": "angular api array copied copy created creates deep deleted destination elements example-example exception function html identical including js js-angular-release module ng null object objects partials primitives properties provided returned source src supplied thrown type undefined updated"
}
},
"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": "angular api arguments arrays compare compared comparing comparison consider considered determines domwindow equal equals equivalent expression expressions false function html identify ignored javascript javasscript js js-angular-release matches module names nan ng o1 o2 object objects partials pass properties property regular represent representation scope src supports textual true type types values"
}
},
"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": "angular api application args arguments bind bindings bound call calls context contrast_with_partial_function_application currying distinguished evaluated feature fn function html js js-angular-release module ng optional org partials prebound returns src supply wikipedia wraps"
}
},
"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": "angular api characters function html input internally js js-angular-release json json-formatted json-ified leading module newlines ng notation obj output partials pretty properties representing serialized serializes set src string stripped tojson true whitespace"
}
},
"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 js js-angular-release json module ng partials src string thingy"
}
},
"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 angular angularjs api appcontroller application applications auto auto-bootstrap auto-bootstrapped bootstrap bootstrapped code common compiled define dependencies designates directive document easiest element example example-example1 html instantiated js js-angular-release load loaded manually module modules multiple needed nested ng ngapp optional partials resolved root src tags typically"
}
},
"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 angular annotated api app application applications array block bootstrap bootstrapped browser console created detect directive dom element end-to-end example-multi-bootstrap function guide html injector instances invoked item js js-angular-release load loaded manually module modules multiple newly ng ngapp ngscenario-based note partials predefined prevents report returns root script scripts src start strange subsequent tests warning work"
}
},
"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": "angular angularjs angularpublic api code codename current dot full html jiggling-armfat js js-angular-release major minor module ng number object partials properties release src string version"
}
},
"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 aliases angular angularjs api app append application arguments auto block body bootstrapped case compile create creates current currently dependency directive document element elements example explicitly extra fairly function functions guide html implicit inference inject injecting injection injector invoke jquery js js-angular-release kick label library link list markup module modules myctrl ng ng-controller partials party rare retrieving running scope services src third type typical usage var"
}
},
"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 api auto automatically html implicit injector js js-angular-release module partials src"
}
},
"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 angular annotated annotating annotation annotations api argument arguments array auto call calling change code defined definition dependency equivalent expect explicit extracted function holds html inference inferred injection injector inline instances instantiate invoke item javascript js js-angular-release load methods minification minified module modules names needed obfuscation object parameters parsed partials property provider retrieve return returns service servicea src tobe tools tostring true types valid var ways work works"
}
},
"api/auto/object/$provide": {
"docType": "object",
"id": "module:auto.object:$provide",
"name": "$provide",
"area": "api",
"outputPath": "partials/api/auto/object/$provide.html",
"path": "api/auto/object/$provide",
"searchTerms": {
"titleWords": "$provide",
"keywords": "$get $injector $provide accessed add additional angular api auto called calling cases class components configuration constant correct created examples exposed factories factory finding fn function functions helper holds html individual injector instance instantiate instantiated instantiating js js-angular-release methods module number object options partials property provider providers register registering registers request responsible service services singleton src turn wrapped"
}
},
"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 alert alert-success alias allows angular angularjs api api-compatible apis append associated attached attr bind bindings built-in called calling camelcase children class clean clone commonly compatible contents controller cross-browser css current data default delegates destruction directive directly dom domcontentloaded domelement dummy element elements empty eq event eventdata events extras find fired fires footprint function functionality getter goal handlers hasclass html implements inheriteddata injector intercepts isolate isolatescope jqlite jquery js js-angular-release limited lite load lookups manipulate methods module namespaces needed ng ngcontroller ngmodel nodes non-isolate object original parent partials party passes prepend prop provided raw reached ready references remove removeattr removeclass removed removedata replacewith retrieved retrieves returns scope selectors simply small src starts string subset support tag text tiny toggleclass top triggerhandler unbind val walks wrap wrapped wraps"
}
},
"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 html interface js js-angular-release loader module modules ng partials src type"
}
},
"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 angular api application appname argument arguments auto blocks bootstrap collection config configfn configuration configure core create created creating directive directives existing filters function global hashprefix html initialization injector inside js js-angular-release ll load loader mechanism module modules mycoolapp mymodule ng ngapp optional partials party passed place process providers register registered registering requires retrieve retrieved retrieving service services simplify src unspecified var"
}
},
"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 anchor anchorscroll api called calling changes checks current disableautoscrolling disabled element example-example2 function hash html js js-angular-release match module ng org partials rules scroll scrolls service spec src the-indicated-part-of-the-document w3 watches"
}
},
"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 animate animations api callbacks calls check default doesn dom enable functional html implementation js js-angular-release loaded module ng nganimate order partials perform performs provider src synchronously updates"
}
},
"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 adding angularjs animate animation api classes click core css dom elements enable enabling full functions high-level hooks html included insert javascript js js-angular-release learn manipulation module move ng nganimate operations partials perform remove removing rudimentary service simple src support visit"
}
},
"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 access api behavior cache cached cachefactory cacheid capacity constructs created creation destroy example-example3 expect factory html info js js-angular-release key key-value lru methods module newly ng nosuchcacheid object objects options pair partials properties puts references remove removeall removes returns service set size specifies src tobe tobedefined toequal turns undefined values var ve"
}
},
"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 angular api behave cache cachefactory data directive example expect factory function html info inject js js-angular-release key module ng object partials remove removeall retrieve return script size src store super-cache supercache templates test tobeundefined toequal type"
}
},
"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 adding angular api cache cachefactory consuming content definition directly document head html included javascript js js-angular-release load loaded module myapp ng ng-app ng-include partials quick retrieval retrieve script service simply src tag template templateid templates text time type var"
}
},
"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 $compileprovider $digest $element $observe $rootscope $sce $scope $set $transclude $watch access accessing accidentally actual advantage alert alert-error alert-success alert-warning alias aliasing allowing allows amount angular api applied apply appropriate argument arguments array assigned associated assumed asynchronous asynchronously attach attempt attr attribute attributes attrs augment automatic automatically avoid avoided behavior bi-directional bind binding bound bracket call called caller calling 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 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 differs directive directivedefinitionobject directivename directives document doesn dom eacm easily effects efficient element elements elm empty equivalent error errors evaluated example example-example4 examples exception execute executed execution exist exp expressed expression factory fail false flag fn form fourth function functions gentle gettrustedresourceurl greater guide hand handle hash hasn hello html iattrs ielement illustrate imperatively in-depth including increment infinite info inherit inject injectable injected inserted inside instance instantiated instructions inter inter-communication interpolated interpolation introduction isolate isolated js js-angular-release link linked linking linkingfn list listener listeners load loaded loading local localfn localmodel localname locals locate log logic loop lower manipulate manual manually map matching maxpriority migrates modify module multiple my-attr my-directive mymodule names ng ng:bind ngbind ngmodel ngrepeat ngroute ngtransclude ngview nodes non_assignable_model_expression normal normalized notation null number numerical object objects observe optional options order original otherinjectables outer overflow overridden parameter parent parentmodel parents partials pass passed passing phase place point 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 raised read reason receives recommended recursively reference referenced reflect reflected registered registering registration relying replace replacement representing request require required resides responsible restrict restricts result return returning returns reusable reverse root rule safe scope searching send service set setup share shared sibling siblingdirectivename simplified single sort source specific src stack string stringalias strings style subset supports suspended takes tattrs telement template templateelement templates templateurl terminal throw time transclude transcludefn transclusion transform transformation transformations transforming tree true typical typically undefined unspecified updated updating url values var variable variety view walking watches ways widget working works wrapper x-ng-bind"
}
},
"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 api compile html js js-angular-release module ng partials provider src"
}
},
"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 angular api attributes binding compile current data-ng-bind directive dom element equivalent functions html js js-angular-release linking module needed ng ng-bind ng:bind normalization normalized object partials reflect shared src treated type values x-ng-bind"
}
},
"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 controller controllers create html js js-angular-release method module ng partials provider register registration service src"
}
},
"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 call called check considered controller controllers current evaluating extracted function github global html injection instance instantiating js js-angular-release locals module ng object override partials registered responsible retrieve returns scope service simple src steps string version window"
}
},
"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 api attribute behavior causing change changing creation default directive easy empty href html item js js-angular-release links list location modifies module ng ng-click ngclick partials permits prevented reloads src tag"
}
},
"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": "angular api attribute attributes behaviors booleanattrs broken chance clicks combinations correct directive error example example-example5 gravatar href html http js js-angular-release link links markup module ng ng-click ng-href nghref partials problem replace replaces return solves src string url user write wrong"
}
},
"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 api attribute booleanattrs browser buggy correct directive doesn expression fetch gravatar html http img inside js js-angular-release literal markup module ng ng-src ngsrc partials problem replaces solves src string text url work write"
}
},
"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 api attribute booleanattrs browser buggy correct directive doesn expression fetch gravatar html http img inside js js-angular-release literal markup module ng ng-srcset ngsrcset partials problem replaces solves src srcset string text url work write"
}
},
"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 angular api attribute attributes binding boolean booleanattrs browser browsers button chrome complementary directive disabled element enabled example-example6 expression false guide html ie8 ies input interpolation isdisabled js js-angular-release lost markup module ng ng-init ngdisabled older partials permanent place presence preserve problem reliable removed removes require scope set solves special specification src store true truthy values"
}
},
"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 angular api attribute attributes binding boolean booleanattrs browser browsers checked complementary directive element example-example7 expression false guide html input interpolation js js-angular-release lost module ng ngchecked partials permanent place presence preserve problem reliable removed removes require set solves special specification src store true truthy values"
}
},
"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 angular api attribute attributes binding boolean booleanattrs browser browsers complementary directive element example-example8 expression false guide html input interpolation js js-angular-release lost module ng ngreadonly partials permanent place presence preserve problem readonly reliable removed removes require set solves special specification src store true truthy values"
}
},
"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 angular api attribute attributes binding boolean booleanattrs browser browsers complementary directive element example-example9 expression false guide html interpolation js js-angular-release lost module ng ngselected option partials permanent place presence preserve problem reliable removed removes require selected set solves special specification src store true truthy values"
}
},
"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 angular api attribute attributes binding boolean booleanattrs browser browsers complementary details directive element example-example10 expression false guide html interpolation js js-angular-release lost module ng ngopen open partials permanent place presence preserve problem reliable removed removes require set solves special specification src store true truthy values"
}
},
"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 $invalid $pristine $valid api arrays built-in control controls creates directive dirty email error form formcontroller forms hash html instance interacted invalid js js-angular-release max maxlength min minlength module names nested ng number object partials pattern references required src tokens track true type url user valid validation values"
}
},
"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 allow api capabilities controller controls determined directive eac elements example form forms group html js js-angular-release module nest nestable nesting ng ngform note partials posting published purpose replacement scope server src sub-group tag validity"
}
},
"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 alias allow allows angular animation animations api application-specific applications apps associated attribute background behaves browser browsers button buttons called child classes classical click client-side color controller css current data default desirable detect directive directives dirty doesn double dynamically element elements enclosing enter example example-example11 execution field fields form formcontroller forms full generate generated handle handler hitting hook hooked hooks html identically include input inputs instantiates interpolation invalid javascript js js-angular-release keyframes linear logic method mind module my-form nest nested nesting ng ng-dirty ng-invalid ng-pristine ng-valid nganimate ngclass ngclick ngform ngrepeat ngsubmit outer partials performed prevent preventing prevents pristine published reason red reload removed rendered repeated role roundtrip rules scope sends server set simple specification src style submission submit submitted submitting transition transitions translate trigger triggered triggers type utilize valid validated validation validations ways white work wrap"
}
},
"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 angular api assignable attribute automatically binding changes constraint control data data-bind defined element entered error evaluates example-text-input-directive executed expected expression expressions false form html inline input interaction js js-angular-release key longer match maxlength minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired partials pattern patterns property published regexp required scope set sets shorter src standard text trim true user validation"
}
},
"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 angular api assignable attribute changes constraint control data-bind defined element entered error evaluates example-number-input-directive executed expected expression expressions form greater html inline input interaction js js-angular-release key longer match max maxlength min minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired number partials pattern patterns property published regexp required scope sets shorter src text transformation true user valid validation"
}
},
"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 angular api assignable attribute changes constraint content control data-bind defined element entered error evaluates example-url-input-directive executed expected expression expressions form html inline input interaction js js-angular-release key longer match maxlength minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired partials pattern patterns property published regexp required scope sets shorter src text true url user valid validation"
}
},
"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 angular api assignable attribute changes constraint control data-bind defined element email entered error evaluates example-email-input-directive executed expected expression expressions form html inline input interaction js js-angular-release key longer match maxlength minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired partials pattern patterns property published regexp required scope sets shorter src text true user valid validation"
}
},
"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 api assignable button changes control data-bind element example-radio-input-directive executed expression form html input interaction js js-angular-release module ng ngchange ngmodel ngvalue partials property published radio selected set sets src user"
}
},
"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 api assignable changes checkbox control data-bind element example-checkbox-input-directive executed expression form html input interaction js js-angular-release module ng ngchange ngfalsevalue ngmodel ngtruevalue partials property published selected set src user"
}
},
"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 angular api assignable attribute changes constraint control data-bind data-binding defined directive element entered error evaluates exactly executed expected expression expressions form html inline input interaction js js-angular-release key longer match maxlength minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired partials pattern patterns properties property published regexp required scope sets shorter src textarea true user validation"
}
},
"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": "angular api assignable attribute behavior browsers changes control data-bind data-binding defined directive element entered error example-input-directive executed expected expression expressions form html html5 inline input interaction js js-angular-release key longer match maxlength minlength module ng ngchange ngmaxlength ngminlength ngmodel ngpattern ngrequired older partials pattern patterns polyfills property published regexp required scope set sets shorter src true types user validation"
}
},
"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 $setvalidity $valid $viewchangelisteners $viewvalue $watches achieve actual additional api arguments array attribute bound browser browsers called changed changes collaborate contenteditable contents control controller convert css custom data-binding deals desired directive directives display dom edited element error errors events example example-ngmodelcontroller execute format formatter formatting function functions hash html html5 ignored input interacted invalid js js-angular-release listening logic model module ng ng-model ngmodel ngmodelcontroller note notice object older parsers parsing partials passing pipeline place populate provided purposefully push reads rendering required result return sanitize services src string tells touppercase true turn type undefined update updates user validation validity values view work"
}
},
"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": "animation animations api associated attached background basic behavior best bind binding binds checkbox classes color control created css current custom depending detect directive directives dirty doesn element email errors evaluating example example-example12 examples exist exposed expression form hook hooked hooks html implicitly include including input invalid js js-angular-release keeping keyframes linear mind model models module my-input ng ng-dirty ng-invalid ng-pristine ng-valid nganimate ngclass ngmodel ngmodelcontroller note number parent partials performed practices pristine property providing radio red registering removed rendered require required responsible scope select set setting simple src style text textarea transition transitions triggered url utilize valid validated validation validations validity view white work"
}
},
"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 change changes coming directive element evaluate evaluated event example-ngchange-directive expression form guide html input javascript js js-angular-release key leaves model module ng ngchange ngmodel note onchange partials presses requires return src triggers user"
}
},
"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": "api array comma converted converts default delimited delimiter directive example-nglist-directive expression fixed form html input js js-angular-release module ng nglist optional partials regular split src string strings text"
}
},
"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 attribute binds bound buttons directive dynamically element example-ngvalue-directive expression generating html input js js-angular-release lists module ng ng-repeat ngmodel ngvalue partials radio selected set src"
}
},
"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 angular api attribute bindings box browser changes compiles content curly directive directly displayed don double element enter evaluate example-example13 expression greeting guide html instantly invisible js js-angular-release live loading markup module momentarily ng ngbind ngcloak partials preferable preview problem raw replace solution src tells template text typically update user verbose"
}
},
"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": "api attribute box change content directive element elements enter eval example-example14 expressions form greeting html interpolation js js-angular-release module multiple needed ng ngbind ngbindtemplate option partials replaced span specifies src template text title watch"
}
},
"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 angular api bind binding bound box bypass change content contextual core creates current default dependencies directive element ensure enter escaping evaluate evaluating example example-example15 exception explicitly exploit expression functionality greeting guide html including innerhtml innerhtml-ed isn js js-angular-release module ng ngbind ngbindhtml ngsanitize note partials result safe sanitization sanitized secure service src strict text trustashtml trusted unavailable utilize values watch"
}
},
"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 allows animation animations api applied apply array basic bindings boolean case changes class class-based classes corresponding css css3 databinding delimited demonstrates depending details directive duplicate dynamically element eval evaluates evaluation example example-example16 example-example17 expression follow guide hinder html idea js js-angular-release key key-value map module names naming ng nganimate ngclass object operates pair partials perform pre-existing properties remove removeclass removed representing represents result set space space-delimited src start step string structure supplementary supports three track transitions truthy types values view ways won"
}
},
"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 api applied array class conjunction delimited directive directives eval evaluation exactly example-example18 expression guide html js js-angular-release module names ng ngclass ngclasseven ngclassodd ngrepeat odd partials representing result rows scope space src string work"
}
},
"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 api applied array class conjunction delimited directive directives eval evaluation exactly example-example19 expression guide html js js-angular-release module names ng ngclass ngclasseven ngclassodd ngrepeat odd partials representing result rows scope space src string work"
}
},
"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": "ac add addition alternatively angular angular-csp api application applied apply attribute avoid best browser browsers caused children class compilation compiled cooperation csp css deletes directive directives display displayed document element elements embedded encounters example example-example20 external file flicker form head hidden html ie7 included js js-angular-release legacy limitation loaded loading making match min mode module multiple ng ng-cloak ngcloak ngcsp partials permit portions preferred prevent progressive provide raw rendering result rule script selector small src stylesheet support tagged template undesirable usage view visible work works x-ng-cloak"
}
},
"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 access accessed accessible adding allows angular api application aspect attach attached attaches automatically bindings business called changes class clearing common components contact controller controllers current data declaration declare declared declaring decorate definition design directive dom easily easy editing evaluates example example-example21 example-example22 executed expression form function functions globally greeting guide html instance js js-angular-release key logic manual markup methods mistake model model-view-controller module mvc ng ng-controller ngcontroller ngroute note notice partials pattern preference principles properties property propertyname published reflected removing rendered route scope scopes service simple source specifies src styles supports tab template update user values view"
}
},
"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": "$parse angular angular-csp angularjs api application apply applying apps attribute automatically chrome compatibility compatible csp css data-ng-csp developing directive directives element enables eval evaluate example expressions extensions feature forbids form function functions generated getterfn google html implement include includes inline javascript js js-angular-release manually mode module mozilla ng ng-app ng-csp ngcloak ngcsp non-csp optimization order org partials policy raised restrictions root rules security slower speed src stylesheet support tag things violating violations work"
}
},
"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",
"keywords": "$event allows api behavior click clicked custom directive element evaluate event example-example23 expression guide html js js-angular-release module ng ngclick ngeventdirs object partials src"
}
},
"api/ng/directive/ngDblclick": {
"docType": "directive",
"id": "module:ng.directive:ngDblclick",
"name": "ngDblclick",
"area": "api",
"outputPath": "partials/api/ng/directive/ngDblclick.html",
"path": "api/ng/directive/ngDblclick",
"searchTerms": {
"titleWords": "ngDblclick dblclick",
"keywords": "$event allows api behavior custom dblclick directive evaluate event example-example24 expression guide html js js-angular-release module ng ngdblclick ngeventdirs object partials src"
}
},
"api/ng/directive/ngMousedown": {
"docType": "directive",
"id": "module:ng.directive:ngMousedown",
"name": "ngMousedown",
"area": "api",
"outputPath": "partials/api/ng/directive/ngMousedown.html",
"path": "api/ng/directive/ngMousedown",
"searchTerms": {
"titleWords": "ngMousedown mousedown",
"keywords": "$event allows api behavior custom directive evaluate event example-example25 expression guide html js js-angular-release module mousedown ng ngeventdirs ngmousedown object partials src"
}
},
"api/ng/directive/ngMouseup": {
"docType": "directive",
"id": "module:ng.directive:ngMouseup",
"name": "ngMouseup",
"area": "api",
"outputPath": "partials/api/ng/directive/ngMouseup.html",
"path": "api/ng/directive/ngMouseup",
"searchTerms": {
"titleWords": "ngMouseup mouseup",
"keywords": "$event api behavior custom directive evaluate event example-example26 expression guide html js js-angular-release module mouseup ng ngeventdirs ngmouseup object partials src"
}
},
"api/ng/directive/ngMouseover": {
"docType": "directive",
"id": "module:ng.directive:ngMouseover",
"name": "ngMouseover",
"area": "api",
"outputPath": "partials/api/ng/directive/ngMouseover.html",
"path": "api/ng/directive/ngMouseover",
"searchTerms": {
"titleWords": "ngMouseover mouseover",
"keywords": "$event api behavior custom directive evaluate event example-example27 expression guide html js js-angular-release module mouseover ng ngeventdirs ngmouseover object partials src"
}
},
"api/ng/directive/ngMouseenter": {
"docType": "directive",
"id": "module:ng.directive:ngMouseenter",
"name": "ngMouseenter",
"area": "api",
"outputPath": "partials/api/ng/directive/ngMouseenter.html",
"path": "api/ng/directive/ngMouseenter",
"searchTerms": {
"titleWords": "ngMouseenter mouseenter",
"keywords": "$event api behavior custom directive evaluate event example-example28 expression guide html js js-angular-release module mouseenter ng ngeventdirs ngmouseenter object partials src"
}
},
"api/ng/directive/ngMouseleave": {
"docType": "directive",
"id": "module:ng.directive:ngMouseleave",
"name": "ngMouseleave",
"area": "api",
"outputPath": "partials/api/ng/directive/ngMouseleave.html",
"path": "api/ng/directive/ngMouseleave",
"searchTerms": {
"titleWords": "ngMouseleave mouseleave",
"keywords": "$event api behavior custom directive evaluate event example-example29 expression guide html js js-angular-release module mouseleave ng ngeventdirs ngmouseleave object partials src"
}
},
"api/ng/directive/ngMousemove": {