forked from jquery-archive/jquery-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
2754 lines (2689 loc) · 419 KB
/
changelog
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
This file contains a shell for the changelog, followed by a list of every commit for this release.
Choose the appropriate line for the Summary section.
Move all commit notes to the appropriate section.
- Each line should be in the following format:
[Fixed|Added]: The ticket description. ([Ticket link], [Commit link])
- If the commit is not related to a bug or feature, e.g., whitepsace cleanup, remove it.
- If there is no ticket number, search Trac for the relevant ticket.
- If there is no ticket, create one (if needed), or leave just the commit link.
Double check that "TICKETREF" does not appear anywhere in the changelog.
Add this changelog to jqueryui.com.
DELETE EVERYTHING ABOVE THE FOLLOWING LINE
------------------------------------------
<script>{
"title": "jQuery Mobile 1.4.0-alpha.2 Changelog"
}</script>
## Build
## Core & Utilities
### UI Core
### Mouse
### Widget Factory
### Position
## Interactions
### Draggable
### Droppable
### Resizable
### Selectable
### Sortable
## Widgets
### Accordion
### Autocomplete
### Button
### Datepicker
### Dialog
### Menu
### Progressbar
### Slider
### Spinner
### Tabs
### Tooltip
## Effects
### Individual effects
## CSS Framework
## Demos
## Website
### Download Builder
* 'Changed version to: 1.4.0-alpha.1' (TICKETREF, [d17d2ba](http://github.com/jquery/jquery-mobile/commit/d17d2ba7a10af43dac930d1ee65b6b46268bb08d))
* 'Changed version to: 1.4.0-alpha.2' (TICKETREF, [1e27844](http://github.com/jquery/jquery-mobile/commit/1e27844a1c0b9103a0948480637e6a67f5212dfd))
* 'Changed version to: 1.4.0pre' (TICKETREF, [702af72](http://github.com/jquery/jquery-mobile/commit/702af72a07a541ac8938cef2d73a5a12d2bdecee))
* Accessibility: We don't need to move hidden elements off screen when we set height, width and clip. (TICKETREF, [963151c](http://github.com/jquery/jquery-mobile/commit/963151cdc2782e7c195fec892d419250bda2e282))
* Add swipestart and swipestop data to swipe event (TICKETREF, [57c7038](http://github.com/jquery/jquery-mobile/commit/57c703854c485d63a97861f71e7565338da95e87))
* Added ! to normal banner (TICKETREF, [24ae0b7](http://github.com/jquery/jquery-mobile/commit/24ae0b77311e98222d24552c7bc95599c983f1e1))
* Added --units argument to specify a list of units to run tests on. Fixed up jQuery's default version when no --jquery is passed. (TICKETREF, [5c845fe](http://github.com/jquery/jquery-mobile/commit/5c845fe8e17bcdfb781333037e81b6a84abaa40a))
* Added .jshintrc files (TICKETREF, [4e2bcc0](http://github.com/jquery/jquery-mobile/commit/4e2bcc027bfb221b20b8e4c4cd28728638ea3784))
* Added 1.3-stable branch to Travis CI builds (TICKETREF, [93a5068](http://github.com/jquery/jquery-mobile/commit/93a5068bf164960a11a767fca661388fb621772c))
* Added CSS build Replaces version on build write DRYed banners (TICKETREF, [8390361](http://github.com/jquery/jquery-mobile/commit/8390361e496ef811252f7ad22fa2a794372aaa6f))
* Added Google Maps examples (TICKETREF, [b63304f](http://github.com/jquery/jquery-mobile/commit/b63304f2c597deba21d88f4bfb000081edcec4c2))
* Added RequireJS json plugin (TICKETREF, [fb29293](http://github.com/jquery/jquery-mobile/commit/fb292939129a51846547458e495cbec1a725147a))
* Added Travis CI config (TICKETREF, [bd5247e](http://github.com/jquery/jquery-mobile/commit/bd5247eaab041d53307eea55b580cd7c6577310c))
* Added Travis CI config (cherry picked from commit bd5247eaab041d53307eea55b580cd7c6577310c) (TICKETREF, [b50d487](http://github.com/jquery/jquery-mobile/commit/b50d4873d0dbdb25c52e386610fc5556a9f64d38))
* Added Travis CI test status (TICKETREF, [8cf4d1d](http://github.com/jquery/jquery-mobile/commit/8cf4d1da4ecbf1627b638525b84a5bbf1a812e35))
* Added a "cdn" task that creates a zip of the the js/css/map and images with an associated MD5 manifest Fixes #5882 ([#5882](http://github.com/jquery/jquery-mobile/issues/5882), [569ea47](http://github.com/jquery/jquery-mobile/commit/569ea47d454eb20a77be342ce1b22f1f6ef7d594))
* Added collapsibles to test page. (TICKETREF, [981d384](http://github.com/jquery/jquery-mobile/commit/981d38414e608ea11d6f17037698aa823a28dc59))
* Added comments to CSS to explain why the rules are there. (TICKETREF, [12acffe](http://github.com/jquery/jquery-mobile/commit/12acffe5509f642ce30c2febe75f03cd5f512309))
* Added contribution guides paragraph (TICKETREF, [e7b15e3](http://github.com/jquery/jquery-mobile/commit/e7b15e38cdb44edfe60c1749483477ae80cd9ef0))
* Added default icons stylesheet with inline SVG and external PNG as fallback. (TICKETREF, [541ad66](http://github.com/jquery/jquery-mobile/commit/541ad6627a4e628e353eda3aeb0e65471787c940))
* Added demos target (TICKETREF, [1f514b8](http://github.com/jquery/jquery-mobile/commit/1f514b838f76228e38c825c43ea65191717e15be))
* Added dependency on grunt-qunit-junit Added target test:ci (TICKETREF, [f5b9cf6](http://github.com/jquery/jquery-mobile/commit/f5b9cf687114c94cb2a1582eb51af386f825c1d3))
* Added devDependency on async (TICKETREF, [42449d2](http://github.com/jquery/jquery-mobile/commit/42449d278eb34f0675d7b587584aa4445bd684fe))
* Added devDependency on async (TICKETREF, [eff01ef](http://github.com/jquery/jquery-mobile/commit/eff01efe8bee6d274f3b59efb1058c6580a4a0a3))
* Added dist folder to .gitignore (TICKETREF, [209d3a4](http://github.com/jquery/jquery-mobile/commit/209d3a4d48361f9269df40cbf165196fee2cf063))
* Added dist:common and copy:images Some house cleaning (TICKETREF, [d26ab7f](http://github.com/jquery/jquery-mobile/commit/d26ab7f0258f54f0c6cb27fd52391ae7ce9cc22b))
* Added font icons test (TICKETREF, [a399250](http://github.com/jquery/jquery-mobile/commit/a3992503b7bf9dfee24de3b73d2dea653bdce70b))
* Added forms prefix to button widget CSS file. (TICKETREF, [61951a3](http://github.com/jquery/jquery-mobile/commit/61951a367e871ccfee889cf7aa232efd68063bc2))
* Added injection of requirejs config (TICKETREF, [2ed2dd6](http://github.com/jquery/jquery-mobile/commit/2ed2dd6f46ac9512458dfd357bf1cefd9243b4fd))
* Added injection of requirejs.config.js (TICKETREF, [398b863](http://github.com/jquery/jquery-mobile/commit/398b863d73e48ea0df22ec2f32b35bb9b0f1e8c0))
* Added inline SVG support test; add "no-svg" class if not supported. (TICKETREF, [ab07386](http://github.com/jquery/jquery-mobile/commit/ab0738604cc8b05f9ee0166e010902363f1f7186))
* Added jquery.mobile.transition.fade.css as a css structure dependency (TICKETREF, [b5b296f](http://github.com/jquery/jquery-mobile/commit/b5b296fcab23fa298aeb861d557d6bae5cef3cfe))
* Added link to demos folder on the index page in case the redirect fails. (TICKETREF, [628b198](http://github.com/jquery/jquery-mobile/commit/628b19832ee9ae169dfe7c19c20c561ee2ab4f0c))
* Added main, engines and scripts (TICKETREF, [51b7bd3](http://github.com/jquery/jquery-mobile/commit/51b7bd3903c310f73c201d82aacf6d15cc953429))
* Added middleware to connect to get rid of the PHP dependency. The test target has now a dependency on requirejs:js. The middleware will intercept requests for /js/ and redirect to the built bundle dist/jquery.mobile.js. Also we get the validation of the build for free. Added file lookup to qunit target as well as jquery version selector through --jquery argument at the command line (TICKETREF, [df8f76f](http://github.com/jquery/jquery-mobile/commit/df8f76f9aef803f06d75f53cac41f86c2deb9ac6))
* Added missing class on form disabled test pages. (TICKETREF, [951e1cf](http://github.com/jquery/jquery-mobile/commit/951e1cfa454540a78b0fb55d09ab32fc561c0a0b))
* Added missing semi-colon in listview CSS. (TICKETREF, [c2e0a2f](http://github.com/jquery/jquery-mobile/commit/c2e0a2fcce42e93e904675de5e8fa09e8f4dabce))
* Added missing semi-colon in navigate events. (TICKETREF, [ababcaf](http://github.com/jquery/jquery-mobile/commit/ababcafa73c56395c69d653921b51846fdadd9e6))
* Added missing semicolons. (TICKETREF, [60df261](http://github.com/jquery/jquery-mobile/commit/60df26130919221c7ebb9ccfffc2242e5d8a7998))
* Added more examples to listview test pages. (TICKETREF, [0c38dda](http://github.com/jquery/jquery-mobile/commit/0c38dda5c6517a884f99c99ec4f5eb0a4da04d07))
* Added option passing to RequireJS (TICKETREF, [8ffd365](http://github.com/jquery/jquery-mobile/commit/8ffd36599d437eedd9a208eb2ff67751cd289937))
* Added shim config for widgets/jquery.ui.tabs (TICKETREF, [19a7f27](http://github.com/jquery/jquery-mobile/commit/19a7f27a7987905b0f8ef9943c2dcc133ad89734))
* Added swatch "b" test pages. (TICKETREF, [31c4b01](http://github.com/jquery/jquery-mobile/commit/31c4b01b74f105847a10fa50d10f4e46d5415437))
* Added task config:dev which generates the version string from the current git SHA1 hash (TICKETREF, [f5a5920](http://github.com/jquery/jquery-mobile/commit/f5a592037fd847380a863c233f80d2ee12d9e1ff))
* Added zip target (TICKETREF, [79a7446](http://github.com/jquery/jquery-mobile/commit/79a7446c8b2918154009d2932ed1f97517272051))
* Adds exported black and white svg / png files from grunticon (TICKETREF, [377d18d](http://github.com/jquery/jquery-mobile/commit/377d18de578d58e8fdd1803f615a6bf7deae3986))
* Adjusted globbing patterns when specifying --units flag (TICKETREF, [d56f590](http://github.com/jquery/jquery-mobile/commit/d56f5903e9ef4f03cebd4f7f57e57c5c7d208668))
* Adjusted label margin. Fixes #5976. ([#5976](http://github.com/jquery/jquery-mobile/issues/5976), [37cd8b2](http://github.com/jquery/jquery-mobile/commit/37cd8b27fe30e8813240042d11deed52788f8dcd))
* Adjusted rules for ui-mini. (TICKETREF, [27851f1](http://github.com/jquery/jquery-mobile/commit/27851f1e5373c402f334d8cb9102d294d5e2e9f6))
* Allow Cross Domain Request for Trigger.io apps (TICKETREF, [31470eb](http://github.com/jquery/jquery-mobile/commit/31470eb4d740aab1bb9fea35a5913426919b65e1))
* Autogrow: adds padding omitted from clientHeight by Firefox. Fixes #6179 - Textinput: height not correctly calculated in Firefox ([#6179](http://github.com/jquery/jquery-mobile/issues/6179), [b4d5158](http://github.com/jquery/jquery-mobile/commit/b4d51581bb245e409ed6a2925f2716613bd29d64))
* Autogrow: fix height calculation to account for borders Fixes #6180 - Autogrow: calculated height contains border height and Fixes #6178 - Textinput: height not correctly calculated due to box-sizing thanks @jhogervorst ([#6180](http://github.com/jquery/jquery-mobile/issues/6180), [#6178](http://github.com/jquery/jquery-mobile/issues/6178), [48139f8](http://github.com/jquery/jquery-mobile/commit/48139f86ede5516aa746113d1df60e3712afb9f4))
* Autogrow: removed trailing whitespace (TICKETREF, [791754f](http://github.com/jquery/jquery-mobile/commit/791754face028788bccd6ba715dbb2e82f611c32))
* Autoinit: Add wrapper to $.widget to inject default initSelector to widgets, add enhanceWithin function to helpers (TICKETREF, [0e61e08](http://github.com/jquery/jquery-mobile/commit/0e61e08a9f7fd4543a1ed1c2d7b7b75a80b53c8c))
* Autoinit: Remove registry and replace with new auto init (TICKETREF, [cd13e36](http://github.com/jquery/jquery-mobile/commit/cd13e366ca46361dc8230b7160ae5fb798c0c9e1))
* Automated tests: Custom select: Move highlight checking test from unit tests to integration tests. (TICKETREF, [4e69a1b](http://github.com/jquery/jquery-mobile/commit/4e69a1b791d775c25c96d1d1e637f2e184b0378f))
* Automated tests: Custom select: Moving test that checks whether adding options causes them to be reflected in the widget from unit tests to integration tests. (TICKETREF, [5b27d44](http://github.com/jquery/jquery-mobile/commit/5b27d4401d65a9a71fb569c02b0588d964c07551))
* Automated tests: Select: Move label overflow test to integration tests. (TICKETREF, [ef7bf36](http://github.com/jquery/jquery-mobile/commit/ef7bf3690ba41fbcd9277076dc8b07537bd54f11))
* Automated tests: Select: Moving test for correct placeholder handling from unit tests to integration tests, because it is asynchronous. (TICKETREF, [981194a](http://github.com/jquery/jquery-mobile/commit/981194a718d93f14a3e5bc4c19a80f8ab0536e2a))
* Back to body theme class for count bubbles. Tweaked count bubble style. (TICKETREF, [de95bcf](http://github.com/jquery/jquery-mobile/commit/de95bcfca51074f3818f4724bcb220f564ebebee))
* Base class: Depend on jquery.mobile.data, because _getCreateOptions calls $.mobile.getAttribute. Fixes: #6288 - Download Builder(latest): A input or button-based Button widget has an error. (TICKETREF, [d7b5750](http://github.com/jquery/jquery-mobile/commit/d7b5750d662f271e7bb7e834a3116298b1c903b7))
* Base class: Ignore null option values coming in from the DOM. (TICKETREF, [1d82f72](http://github.com/jquery/jquery-mobile/commit/1d82f725fb4c29ccbce027bd3b59c758aee2dbb8))
* Base class: Improve performance of _getCreateOptions by removing $.each() and moving string replace callback and regex to the outer IIFE. (TICKETREF, [f976a5a](http://github.com/jquery/jquery-mobile/commit/f976a5ab2a1a2220a74317db7d954ef91f7dab95))
* Base widget: Remove _toggleClasses. (TICKETREF, [3b954a2](http://github.com/jquery/jquery-mobile/commit/3b954a2d8dd3f95c420119ca2626701173948f28))
* Base widget: Remove _toggleClasses. (TICKETREF, [94c4677](http://github.com/jquery/jquery-mobile/commit/94c4677325be8ce994bd9180e60bca587c17a2e6))
* Border styling. (TICKETREF, [d61403d](http://github.com/jquery/jquery-mobile/commit/d61403d8b5e017591b57d87727537aa8ae1e839f))
* Bring back icons in listview buttons. Will look into performance of selectors later. (TICKETREF, [bc766a7](http://github.com/jquery/jquery-mobile/commit/bc766a7df1a500283b26c27cad52da57171b8ae6))
* Build: Add a dist:git task, along with a copy:git target for git-cdn deploys (TICKETREF, [988d0dd](http://github.com/jquery/jquery-mobile/commit/988d0dd43a94f7d6df867c2f7cabffa6bb8f4abb))
* Build: Added a clean step for the git build (TICKETREF, [e98f21e](http://github.com/jquery/jquery-mobile/commit/e98f21ed9476a833a47c7688c8d3bdc23c6d8885))
* Build: Added deploy and deploy:git tasks. Now version the files directly in dist instead of doing it at rsync time. That allows us to use the "dir/" syntax for rsync to have rsync create the destination directory. (TICKETREF, [af24edc](http://github.com/jquery/jquery-mobile/commit/af24edcfd6f8b6083efbca85ad7b5d13024f0d0f))
* Build: Added deploy tasks ( WIP ) (TICKETREF, [827f2a5](http://github.com/jquery/jquery-mobile/commit/827f2a54681069356aa0d25256d6ef90e56aec70))
* Build: Added grunt-contrib-clean (TICKETREF, [8c227ae](http://github.com/jquery/jquery-mobile/commit/8c227aef013ebb7659aaa1953b515e9ef2129c46))
* Build: Added new grunt tasks: curl, rsync, release and recurse (TICKETREF, [8be2ce7](http://github.com/jquery/jquery-mobile/commit/8be2ce708d9eb40de5ce3c03cfd4c742e828bd4f))
* Build: Added possibility to set jqueries using environment variable JQUERIES (TICKETREF, [700aa8c](http://github.com/jquery/jquery-mobile/commit/700aa8cbd2663dfa1a8416469b6db726dc4b6426))
* Build: Added setting of versionSuffix config attribute in release:init task (TICKETREF, [f87ccfb](http://github.com/jquery/jquery-mobile/commit/f87ccfb2f14ab07f77523486ba27ce8abdc826bd))
* Build: Added tagging task (TICKETREF, [d531826](http://github.com/jquery/jquery-mobile/commit/d531826aee25af5689de736a9357bf36589c0372))
* Build: Added task "lint" as an alias to "jshint" (TICKETREF, [b22a856](http://github.com/jquery/jquery-mobile/commit/b22a8564a3ed2573fddb829c7880d0ca37bb48c1))
* Build: Changed banner to display git HEAD hash in a new fashion and the build date instead of the commit date (TICKETREF, [0ff5f25](http://github.com/jquery/jquery-mobile/commit/0ff5f256b5fbc3906fa93a507f6b3ddd2bfc4c73))
* Build: Changed dependencies versions to official ones (TICKETREF, [2ede2ec](http://github.com/jquery/jquery-mobile/commit/2ede2ecb0374dc3acc3a3219775becc4ea70a4be))
* Build: Changed dest path format so rsync will create destination directory when needed (TICKETREF, [babbae7](http://github.com/jquery/jquery-mobile/commit/babbae7c397205172f82b404e1ce005186077d9a))
* Build: Changed rsync target to production settings (TICKETREF, [e8cb008](http://github.com/jquery/jquery-mobile/commit/e8cb00831f1f95e9b00697c39f79c65e9724b7f5))
* Build: Don't process *.ico in demos.secondpass (TICKETREF, [d1b90f0](http://github.com/jquery/jquery-mobile/commit/d1b90f08ce0ea26a75607697952f79bfdd3c403c))
* Build: Execute "release:init" before "release:fail-if-pre" in "deploy" task (TICKETREF, [71001d1](http://github.com/jquery/jquery-mobile/commit/71001d1aeec08fec5545f5c04920f8a5e5c97b2a))
* Build: Exposed deploy task to be able to do test deploys. Changed baseUrls to not add trailing slash. Added message when running in dry mode. (TICKETREF, [5322b54](http://github.com/jquery/jquery-mobile/commit/5322b5420659323d3f2ee44279b64004ae1e1159))
* Build: Fixed demos build Split files.css by type (TICKETREF, [f862d70](http://github.com/jquery/jquery-mobile/commit/f862d706ae7b5503011cfd9822c158e38dfd1798))
* Build: Fixed destination for zip file (TICKETREF, [9c16581](http://github.com/jquery/jquery-mobile/commit/9c165811651295a6907642ad06e2ad0992bfa5c4))
* Build: Fixed destination path for files (TICKETREF, [aaaafe7](http://github.com/jquery/jquery-mobile/commit/aaaafe7655cc6e841af1cc6112c87de511829e2c))
* Build: Fixed function that selects tests to run Stripped index.html from test urls as some tests don't react well to it Added comments (TICKETREF, [b50bdc1](http://github.com/jquery/jquery-mobile/commit/b50bdc14616ec4dd9b1dfb8b0ce8b47cdf6e926e))
* Build: Fixed images by moving the copy of non-html, non-php to the unprocessed pass (TICKETREF, [bbc1ed3](http://github.com/jquery/jquery-mobile/commit/bbc1ed383766bdd40689d9b74674375cc3921f57))
* Build: Fixed js and css targets (TICKETREF, [effd619](http://github.com/jquery/jquery-mobile/commit/effd61962750f0333b5d153eb51d44838d68b0e4))
* Build: Fixed sourceMap by removing the leading "dist/" Added a linefeed at the end of the minified copyright Whitespace changes (TICKETREF, [d5aaae5](http://github.com/jquery/jquery-mobile/commit/d5aaae5abc3202394c1aeb8d86fee24600630cec))
* Build: Fixed syntax error in package.json (TICKETREF, [7b7e0ec](http://github.com/jquery/jquery-mobile/commit/7b7e0ec6b78705827cdded95daee1fe7db130ee3))
* Build: Fixed tagging task (TICKETREF, [45ffb10](http://github.com/jquery/jquery-mobile/commit/45ffb10d1ac602c6e8d21ee96de002c4ce81dc3c))
* Build: Fixed test task (TICKETREF, [27f835b](http://github.com/jquery/jquery-mobile/commit/27f835bbce065b453f793e573199b585c9fc674b))
* Build: Fixed up release:set-version (TICKETREF, [d388d1a](http://github.com/jquery/jquery-mobile/commit/d388d1af85555ec01e91429176744e20d0464c0a))
* Build: Fixed various archives where files where missing Removed theme files from CDN zip (TICKETREF, [d6a084c](http://github.com/jquery/jquery-mobile/commit/d6a084c6a0de7e32e2bdaf21631944bf241a6946))
* Build: Images were missing from the dist/images directory and therefore from the zip file (TICKETREF, [a35837a](http://github.com/jquery/jquery-mobile/commit/a35837a919bfc4db2bbbd6340bb17d2a633b0f59))
* Build: Minified date in .min banner. Automated copyright end date. (TICKETREF, [991142e](http://github.com/jquery/jquery-mobile/commit/991142e3334e6a36f7c8a8376c8cacf598339d39))
* Build: Move the versionSuffix template out of name it was causing rsync:release to miss files (TICKETREF, [8ea352f](http://github.com/jquery/jquery-mobile/commit/8ea352f2314cfb0b1d19c9a840a71fe1e9519d2b))
* Build: New demos + clean target (TICKETREF, [663f80c](http://github.com/jquery/jquery-mobile/commit/663f80ce425d4b626a12b0668537064ed4016ed9))
* Build: Only clean:dist when releasing because really that's all we need (TICKETREF, [0ef6d39](http://github.com/jquery/jquery-mobile/commit/0ef6d3920c210f666e9f44dbe0fc764a86926cdc))
* Build: Removed *:git (TICKETREF, [56b261e](http://github.com/jquery/jquery-mobile/commit/56b261ebf584f2a295c176c549aae691fcfdd070))
* Build: Removed am/pm from build date since we're using 24H format (TICKETREF, [8b8eac8](http://github.com/jquery/jquery-mobile/commit/8b8eac86e04fba245c3b6eaa5c3e3592a08ba761))
* Build: Removed deploy:latest, renamed deploy:release to release (TICKETREF, [5a696e1](http://github.com/jquery/jquery-mobile/commit/5a696e108674d88501e0ea7daf31c42011916789))
* Build: Removed redefinition of "release" task (TICKETREF, [e3c1927](http://github.com/jquery/jquery-mobile/commit/e3c192786888306fff6710c718b4b869e1f4767f))
* Build: Rename demos.firstpass to demos.processed, it now processes *.php and *.html. Removed redundant demo.secondpass (TICKETREF, [99947cc](http://github.com/jquery/jquery-mobile/commit/99947ccb8222c46907deeb23cf2e2907e812431a))
* Build: Restored rsync user and host to production values (TICKETREF, [bbeb818](http://github.com/jquery/jquery-mobile/commit/bbeb818ac384f20e9f232a477b7ef183696b1560))
* Build: Restored test target to `grunt test` (TICKETREF, [c5acaf7](http://github.com/jquery/jquery-mobile/commit/c5acaf783a2c9c75944368f3fa273dab778814a9))
* Build: Use exact version numbers for dependencies. (TICKETREF, [dbc85a0](http://github.com/jquery/jquery-mobile/commit/dbc85a073a8bb0ef6cdc644ca4ccb211e2c4f51d))
* Build: Use local variable _ for underscore (TICKETREF, [660efc5](http://github.com/jquery/jquery-mobile/commit/660efc58df39223341152dcab40ddfe4c9e4ba1d))
* Build: fix CDN reload querystring (TICKETREF, [332646b](http://github.com/jquery/jquery-mobile/commit/332646bfe36d5c6a10fc5194fc5890d9a2144d4a))
* Build: rsync was failing to copy demos and images dir, fixed. (TICKETREF, [2ad2b83](http://github.com/jquery/jquery-mobile/commit/2ad2b83a6a39a2c735c7353d27e93e0b1f6bb452))
* Build: use grunt-contrib-compress instead of grunt-zip (TICKETREF, [cc7d264](http://github.com/jquery/jquery-mobile/commit/cc7d264fbc553be89fc3200b7ee9e05a3851aa18))
* Button markup: Allow reading of DOM attributes from $.fn.buttonMarkup to retain backwards compatibility. (TICKETREF, [990e5ce](http://github.com/jquery/jquery-mobile/commit/990e5ceb6ccf8c9f8133cad229af41d220810b24))
* Button: Adjustments to selectors ui-btn-left and -right CSS rules. Fixes #5869. ([#5869](http://github.com/jquery/jquery-mobile/issues/5869), [287d379](http://github.com/jquery/jquery-mobile/commit/287d3796fd64e2ee020967a89afec08a6dbca9c2))
* Button: Changed ui-btn-corner-all to ui-corner-all (TICKETREF, [0043089](http://github.com/jquery/jquery-mobile/commit/0043089d9e829cd544c93f9fb32967edb095619e))
* Button: Class ui-input-btn for all input buttons instead of ui-submit. Adjusted rules for buttons in field containers. (TICKETREF, [2c2be73](http://github.com/jquery/jquery-mobile/commit/2c2be730b41c888e3e17ca1a1cdbc0ab26bd3ebd))
* Button: Correct width of icon only buttons. (TICKETREF, [c15eb08](http://github.com/jquery/jquery-mobile/commit/c15eb08da95e07e63dd4fbca1b4e72401d78d0cf))
* Button: Don't add class ui-btn-hidden to native inputs but use a type selector. (TICKETREF, [86bb286](http://github.com/jquery/jquery-mobile/commit/86bb286949475793139cacf901ce2a0bd1890598))
* Button: Don't use diplay none to hide the native input when disabled, because this makes a difference for screen readers. (TICKETREF, [3707c55](http://github.com/jquery/jquery-mobile/commit/3707c55b482e9872442892fd9cb3f40bca5d089c))
* Button: First pass on buttons without calls to buttonMarkup(). (TICKETREF, [c747016](http://github.com/jquery/jquery-mobile/commit/c7470167dbdd5577bb1487b77fdb30166bcfdd55))
* Button: Fix Tests from moving button (TICKETREF, [bcd97c9](http://github.com/jquery/jquery-mobile/commit/bcd97c926b28389fb403d595334c6497d217a8c7))
* Button: Fix initSelector to only do input[type=button] to exclude button elements with type=button Fixes #6237 - JQM 1.4 alpha button on form has a large border ([#6237](http://github.com/jquery/jquery-mobile/issues/6237), [b2d9570](http://github.com/jquery/jquery-mobile/commit/b2d9570a665219fe5ca81843b6cc500cfe331c5d))
* Button: Fix initselector to only target inputs (TICKETREF, [e6eaab6](http://github.com/jquery/jquery-mobile/commit/e6eaab6c51ccc01a0a1e90d85557b9cb1fc3f2ed))
* Button: Fixed different height of button elements on Firefox. (TICKETREF, [f58166c](http://github.com/jquery/jquery-mobile/commit/f58166cb7cd19bd56663872800f927410a50f2a3))
* Button: Icon positioning and padding. (TICKETREF, [2772d1d](http://github.com/jquery/jquery-mobile/commit/2772d1d7184534f520f1bc15e1b8b2340678093d))
* Button: If a button element doesn't contain text we use the value if provided. (TICKETREF, [472b2ad](http://github.com/jquery/jquery-mobile/commit/472b2ad4d3832f97cc85662fc22371d2b2278a35))
* Button: Implement widget(), _destroy(), and perform _setOptions() via buttonMarkup() (TICKETREF, [981cae7](http://github.com/jquery/jquery-mobile/commit/981cae71f7669dfd74e4cec3220da59c68338288))
* Button: Increased specificity of ui-btn-left/right margin 0 rule to make it override default margins on controlgroups, etc. (TICKETREF, [f9a1c98](http://github.com/jquery/jquery-mobile/commit/f9a1c98366349e4dbcd8ba36d2117abdef5fbc51))
* Button: Linting changes that are slightly more sensitive. (TICKETREF, [c396bab](http://github.com/jquery/jquery-mobile/commit/c396babc7042df6f2e980ab4d5b85aba0e6864f5))
* Button: Made sure that icon-only buttons always have white-space nowrap. (TICKETREF, [ac9892e](http://github.com/jquery/jquery-mobile/commit/ac9892e82f3d773b747663d5531046d2dc1d4d02))
* Button: Only check if the element is an input once. (TICKETREF, [5515807](http://github.com/jquery/jquery-mobile/commit/5515807af968269edb600823b6fb209fe903eedf))
* Button: Only margin-right for inline buttons. Fixes #5816. ([#5816](http://github.com/jquery/jquery-mobile/issues/5816), [e003997](http://github.com/jquery/jquery-mobile/commit/e0039978d14a67896cfb167b2db57e0737998ed6))
* Button: Only unset the margin in grids for 100% width button elements. (TICKETREF, [723eb53](http://github.com/jquery/jquery-mobile/commit/723eb534fada4eb9c1513727670b9c10ec0a0ec2))
* Button: Optimized CSS for button elements. (TICKETREF, [feab6bc](http://github.com/jquery/jquery-mobile/commit/feab6bc2ba15aa48e5787d42d450e0f2d3609c6a))
* Button: Remove button element from button widget (TICKETREF, [4a90506](http://github.com/jquery/jquery-mobile/commit/4a90506924c3c0996bb2eba849c2a0ba67604c97))
* Button: Remove selectors that should really be buttonMarkup. (TICKETREF, [c1ca96c](http://github.com/jquery/jquery-mobile/commit/c1ca96cf2340af2473ebdead4da344f016507e7f))
* Button: Removed option disabled and enable/disable methods because the Widget Factory already implements them. Thanks Gabriel! (TICKETREF, [c5b24d0](http://github.com/jquery/jquery-mobile/commit/c5b24d054187652f0275d6d6b5b14c5843aaa9a8))
* Button: Set button text as title attribute value for icon-only buttons. (TICKETREF, [a53090e](http://github.com/jquery/jquery-mobile/commit/a53090efe77f068c4036004b41003e60d615c6c4))
* Button: Simplified the selector for native input style. (TICKETREF, [b131bfd](http://github.com/jquery/jquery-mobile/commit/b131bfd58d12781b9da837bb3642a6c9811eb0d9))
* Button: Update _create method to add enhanced option (TICKETREF, [d455be8](http://github.com/jquery/jquery-mobile/commit/d455be8d27db22bcf1ccef237af3caa17f4366a5))
* Button: add missing space in class for icon Fixes #6217 - Icons not showing correctly on input buttons ([#6217](http://github.com/jquery/jquery-mobile/issues/6217), [147ee42](http://github.com/jquery/jquery-mobile/commit/147ee420b36f3b9e678ac9cf99ad23b2df134d95))
* Button: buttons without buttonMarkup(). (TICKETREF, [d15dc59](http://github.com/jquery/jquery-mobile/commit/d15dc59ea31e411521c03a8afc454600a6abd9e6))
* Button: check to ensure icon is set before applying icon position class Fixes #6212 - Button text not correctly aligned to center ([#6212](http://github.com/jquery/jquery-mobile/issues/6212), [69699d0](http://github.com/jquery/jquery-mobile/commit/69699d00faaff979241f5e90f1399ef6a7ca8d80))
* Button: handle inital options in button creation and handle disabled buttons in buttonMarkup (TICKETREF, [035a829](http://github.com/jquery/jquery-mobile/commit/035a82951d6e77a865c1b33f6ca4ea18c718aa27))
* Button: header and footer buttons. (TICKETREF, [903c1fe](http://github.com/jquery/jquery-mobile/commit/903c1fe61f690fa36a05771e7ecd3e4af0cdf13a))
* Button: remove duplicated call to buttonMarkup (TICKETREF, [546fc72](http://github.com/jquery/jquery-mobile/commit/546fc7237e3502f42c3d56476dacbfb13e2f0b24))
* Button: remove inherit theme btn should have no default theme class (TICKETREF, [9481425](http://github.com/jquery/jquery-mobile/commit/94814258d0f97b1c57b36e786b1be5a62f09b03d))
* Button: removed border-radius inherit for ui-btn-text and added it to listview because that's the only place where we need this. Fixes #5709. ([#5709](http://github.com/jquery/jquery-mobile/issues/5709), [d9eb855](http://github.com/jquery/jquery-mobile/commit/d9eb855191538eb0a3626bdd31d866eafd90f863))
* Button: removed code for buttons in headers. buttonMarkup enhances them as buttons and the new toolbar widget will set the mini and inline options. (TICKETREF, [aeaec3d](http://github.com/jquery/jquery-mobile/commit/aeaec3d43059cdfd8af9b53bd09b9055a7d088a3))
* Button: renamed variable (TICKETREF, [862ad5a](http://github.com/jquery/jquery-mobile/commit/862ad5a20815cebb17b515448d2211f5b04fe29e))
* Button: store data in the widget instead of on the element. (TICKETREF, [260a5ff](http://github.com/jquery/jquery-mobile/commit/260a5ff904963aefd0a813c5ea6aaff1516205de))
* Button: theme inheritance. (TICKETREF, [43c1b77](http://github.com/jquery/jquery-mobile/commit/43c1b775efed7117f4254cb5e8374a3bf29ac98d))
* Button: use extend instead of expando (TICKETREF, [2b5a775](http://github.com/jquery/jquery-mobile/commit/2b5a7759e19e429c7cc8082624bb70aca8118622))
* Button: user-select none for all buttons. (TICKETREF, [7eddc2c](http://github.com/jquery/jquery-mobile/commit/7eddc2cc7373d717515d7604d1b300737f947bbe))
* Button: width auto for inline button elements was gone. (TICKETREF, [982f66f](http://github.com/jquery/jquery-mobile/commit/982f66f17b2421ea814d0453298a3343293070b3))
* CI: Added IRC notification for Travis CI tests (TICKETREF, [5be1817](http://github.com/jquery/jquery-mobile/commit/5be1817945006a83e845b819ba2eee88eb09b1ca))
* CI: Added multiple versions of jQuery to test against (TICKETREF, [e1e2028](http://github.com/jquery/jquery-mobile/commit/e1e202844e20e6e7d5c68940cc99369098d7c3dc))
* CI: Change travis ci config to run only on master (TICKETREF, [a864fe0](http://github.com/jquery/jquery-mobile/commit/a864fe03e684df19209051a7a173243fe81e56c1))
* CI: Changed irc.freenode.net to chat.freenode.net (TICKETREF, [325c522](http://github.com/jquery/jquery-mobile/commit/325c5226d609d3d43a740dc64aaae6c5766e3cd4))
* CI: How about using the right IRC channel? (TICKETREF, [641a58e](http://github.com/jquery/jquery-mobile/commit/641a58e2662437fc7428ff213861f3674ef00790))
* CI: Set build matrix to test against different versions of jQuery ( another attempt at ) (TICKETREF, [5290032](http://github.com/jquery/jquery-mobile/commit/5290032fa417097e761268a5b1788f4a466ea4e8))
* CI: Set build matrix to test against different versions of jQuery (TICKETREF, [2e63ebe](http://github.com/jquery/jquery-mobile/commit/2e63ebe847f7be9348039f1f6e5d996e89340cfb))
* Changed .is() to .hasClass() where possible for performance. (TICKETREF, [c3b58b3](http://github.com/jquery/jquery-mobile/commit/c3b58b312a1938cedcb07938400190be1bdbd448))
* Changed font-size 16px to 1em or removed the setting if not really needed. (TICKETREF, [774c71e](http://github.com/jquery/jquery-mobile/commit/774c71ef7ea4d9b2eeff499c2240db645d3fe425))
* Changed freenode.org to freenode.net (TICKETREF, [81379a9](http://github.com/jquery/jquery-mobile/commit/81379a9b0c4183ea6859bdf91ea97d2f8add7abe))
* Changed getInheritedTheme fallback to swatch "a" (TICKETREF, [08bcd6c](http://github.com/jquery/jquery-mobile/commit/08bcd6c996a216c1af998b7656d8ed426553184c))
* Changed option theme default to "a". (TICKETREF, [98b90c3](http://github.com/jquery/jquery-mobile/commit/98b90c3f03bb30b126b2d0b9079e9ab920e0d301))
* Changed the order of the CSS to reveal possible specificity issues when using Download Builder. (TICKETREF, [4fe1dc0](http://github.com/jquery/jquery-mobile/commit/4fe1dc01f660d289b9859cde9ea5261af1be50fd))
* Changed the qunit_junit namer Took out some debug logging (TICKETREF, [e3266fa](http://github.com/jquery/jquery-mobile/commit/e3266fa99e48deda36c1a96e2e29042fb3ccf30f))
* Changed version in demo center from 1.3.0 to 1.4.0-alpha.1 (TICKETREF, [616d6d1](http://github.com/jquery/jquery-mobile/commit/616d6d12d57bdf4ff2322014ab49f1e0b64a79ad))
* Changed version to 1.4.0pre (TICKETREF, [b45797f](http://github.com/jquery/jquery-mobile/commit/b45797f9596a8966ef8ff236a77aa0d2a34c4b7a))
* Checkbox: Native input and icon style. Fixes #5740. ([#5740](http://github.com/jquery/jquery-mobile/issues/5740), [8f5ad89](http://github.com/jquery/jquery-mobile/commit/8f5ad893813eb611c4f809d2fbbe3fed302a3d3c))
* Checkbox: replaced ui-btn-corner-all by ui-corner-all. (TICKETREF, [df87173](http://github.com/jquery/jquery-mobile/commit/df8717318c137bf1e28a68afd40188b2132a0e76))
* Checkboxradio: Accessibility. See also 3707c55. (TICKETREF, [9637fc8](http://github.com/jquery/jquery-mobile/commit/9637fc89418dd51d94c93380364a801aa2110f6b))
* Checkboxradio: According to the unit tests setting data-iconpos on the label element is supposed to work. (TICKETREF, [2b80339](http://github.com/jquery/jquery-mobile/commit/2b80339ee9ae252ccd5af56541d08bc00fe53fa1))
* Checkboxradio: Escape ID when it is being used as a selector for netting the corresponding <label>. Fixes #6052 - version 1.3.0 checkboxes are not displayed when id has [ character - selectors not escaped properly. ([#6052](http://github.com/jquery/jquery-mobile/issues/6052), [0b4e538](http://github.com/jquery/jquery-mobile/commit/0b4e538d0a0256d9b01cf4e158ce8d640deead5b))
* Checkboxradio: Extend widget instance with buttonMarkup options and empty object after use. (TICKETREF, [3ce6815](http://github.com/jquery/jquery-mobile/commit/3ce6815b5e96b16ac7733a6a76bbbd3a3f30536f))
* Checkboxradio: Fixed disable and enable methods. (TICKETREF, [3e8b311](http://github.com/jquery/jquery-mobile/commit/3e8b311225cb2f1c4ca3277981d4e832d1ba5502))
* Checkboxradio: Fixed the disabled state. (TICKETREF, [fe21742](http://github.com/jquery/jquery-mobile/commit/fe217429915b9c81264a8459c323a9cc72437da3))
* Checkboxradio: Focus state box-shadow on top of other buttons in controlgroups. (TICKETREF, [4a2163c](http://github.com/jquery/jquery-mobile/commit/4a2163c3082642328c108130a11c367b0789b2ca))
* Checkboxradio: Get rid of buttonMarkup. (TICKETREF, [7a55b27](http://github.com/jquery/jquery-mobile/commit/7a55b275bb907ef3101cc92ce494b32af431ff35))
* Checkboxradio: Mini class and margin on the wrapper instead of the button. Adjusted native input size. (TICKETREF, [74a8c54](http://github.com/jquery/jquery-mobile/commit/74a8c54d6cd65e78c61af5100b35b61ac0399882))
* Checkboxradio: On-the-fly options via optionDemultiplexer (TICKETREF, [f085f61](http://github.com/jquery/jquery-mobile/commit/f085f6115a27bfb8ce0fc89462d60f6e98d29f86))
* Checkboxradio: Removed padding and icon positioning rules; use global rules from core.css. (TICKETREF, [0681805](http://github.com/jquery/jquery-mobile/commit/0681805cbacb93d5f7a000b1f97a125fe75627ae))
* Checkboxradio: Removing unused variable. (TICKETREF, [17d1605](http://github.com/jquery/jquery-mobile/commit/17d16050b358271585ec5272d481074949417cd3))
* Checkboxradio: Replace bind with ._on(). (TICKETREF, [eb6eddb](http://github.com/jquery/jquery-mobile/commit/eb6eddb64acfee7032e7204ca300fc2d8c0888fb))
* Checkboxradio: Theme inheritance via CSS. Don't add btn theme class unless it a theme has been set. (TICKETREF, [cac84d1](http://github.com/jquery/jquery-mobile/commit/cac84d1bb75c30e3bc2c46397447f3123e53e02b))
* Checkboxradio: This was once added as fix for IE7 (#3837) and is no longer needed. (TICKETREF, [68b9731](http://github.com/jquery/jquery-mobile/commit/68b973171ea8698a2630004a58fd8b26ab2438e1))
* Checkboxradio: Updated CSS. (TICKETREF, [731b1d0](http://github.com/jquery/jquery-mobile/commit/731b1d0f620b983d6495577fc9558d9d6bc321cd))
* Checkboxradio: Updated the CSS that hides the icon in horizontal controlgroups. (TICKETREF, [f5c4d62](http://github.com/jquery/jquery-mobile/commit/f5c4d62e73a11a9e0c916938bf073bf376e61b0c))
* Checkboxradio: Widget Review (TICKETREF, [5e5b9c9](http://github.com/jquery/jquery-mobile/commit/5e5b9c9722a344b188a7d739e961d12ac81a0804))
* Checkboxradio: ensure proper input order is maintained in the dom durring enhancment. Fixes #339 - Checkboxes don't work when used with ROR checkbox helper ([#339](http://github.com/jquery/jquery-mobile/issues/339), [4ab19a7](http://github.com/jquery/jquery-mobile/commit/4ab19a70766d40382940c86427ffd3dc8e95e1ad))
* Checkboxradio: finish reviewing (TICKETREF, [2815d6f](http://github.com/jquery/jquery-mobile/commit/2815d6fa880fc49b2a78cba9d7738a2e50b7e6c3))
* Checkboxradio: fix icon position of horizontal groups (TICKETREF, [426b4a3](http://github.com/jquery/jquery-mobile/commit/426b4a3a463486ec63e86e11e9938d17f4a32ee9))
* Checkboxradio: fix incorrect refrence to class instead of wrapperClass (TICKETREF, [ec3eece](http://github.com/jquery/jquery-mobile/commit/ec3eecec4873b729d1eac33bde25462f58123c8c))
* Checkboxradio: prevent reintroducing issue #1419; white-space nowrap doesn't work on label. (TICKETREF, [1ba33fc](http://github.com/jquery/jquery-mobile/commit/1ba33fcc3fe66d3c562a75187fd9e2e56c6f9582))
* Checkboxradio: remove duplicated call to buttonMarkup (TICKETREF, [86431e2](http://github.com/jquery/jquery-mobile/commit/86431e2495f8d816f86518aed2f873c0df53e1c9))
* Checkboxradio: review updates (TICKETREF, [7bca17c](http://github.com/jquery/jquery-mobile/commit/7bca17ccba2d3ead082a8de24824e9ed336d553c))
* Checkboxradio: set ui-btn-inherit as default theme class Fixes #6183 - checkboxradio("option", "theme") setter works only once ([#6183](http://github.com/jquery/jquery-mobile/issues/6183), [2978275](http://github.com/jquery/jquery-mobile/commit/2978275191f1798d1b5bad4259fb11093f8e98ca))
* Checkboxradio: use full words for varibles fix options settings and remove dup method (TICKETREF, [5c7b108](http://github.com/jquery/jquery-mobile/commit/5c7b10847caaaa8e2609bff16a14cc1432dcb4c8))
* Cleaned up (TICKETREF, [9851584](http://github.com/jquery/jquery-mobile/commit/9851584212cc43a9e0ee68ec92248f50f6770653))
* Cleaned up old build system (TICKETREF, [0fc724b](http://github.com/jquery/jquery-mobile/commit/0fc724bf69daa00c2dbd91e087f84a687d96ec18))
* Cleanup. (TICKETREF, [99d05bb](http://github.com/jquery/jquery-mobile/commit/99d05bb977cee48fc1d82d2b879eb745e0b25c5c))
* Clearbutton: add clearbutton and autogrow to jquery.mobile.js (TICKETREF, [8adff44](http://github.com/jquery/jquery-mobile/commit/8adff441f31995a6dc52c947aaaa39caf02ac5df))
* Code Style: Whitespace (TICKETREF, [22b5be4](http://github.com/jquery/jquery-mobile/commit/22b5be44f0274b1a32a7c814e9e3ca8e979ce8e6))
* Coding standards (TICKETREF, [19d34b4](http://github.com/jquery/jquery-mobile/commit/19d34b4caff0207cf2ce4e4af96286c91a24f7a9))
* Coding standards (TICKETREF, [af7af31](http://github.com/jquery/jquery-mobile/commit/af7af3108be75ae7b22eb9506bacd910512d96b3))
* Coding standards. (TICKETREF, [03d4933](http://github.com/jquery/jquery-mobile/commit/03d49330fb0e83018ce0ee5a0f428a6d1cc87ae2))
* Coding standards. (TICKETREF, [10a66f4](http://github.com/jquery/jquery-mobile/commit/10a66f400fb40dbcc6efb387d324ba7b3494a0f3))
* Coding standards. (TICKETREF, [489db0a](http://github.com/jquery/jquery-mobile/commit/489db0a3cf5bd1f8e5e60f0a963003a4d4774c27))
* Coding standards. (TICKETREF, [c4b93ab](http://github.com/jquery/jquery-mobile/commit/c4b93abc3733ed39dcb632647a83e326bc28aa22))
* Collapsible (set): Updated CSS to new button markup and icons in pseudo elements. (TICKETREF, [cd7e13e](http://github.com/jquery/jquery-mobile/commit/cd7e13ec21dc29c1f1f07342e2066c451f2ba207))
* Collapsible set: Correction in changes of commit 321fce3. (TICKETREF, [c50bd79](http://github.com/jquery/jquery-mobile/commit/c50bd7935f83f63cdcf95118b3510c7ab100a19a))
* Collapsible set: Declare the same options as collapsible, and update child collapsibles when any of those options change. (TICKETREF, [c12d10f](http://github.com/jquery/jquery-mobile/commit/c12d10f4429d42023c7b304d56c7f162c06c75c0))
* Collapsible set: Do not rely exclusively on the presence of the data-role="collapsibleset" and data-role="collapsible" to identify collapsibles and their parent accordions. Use :mobile-collapsible and :mobile-collapsibleset as well. (TICKETREF, [46cd89c](http://github.com/jquery/jquery-mobile/commit/46cd89c0f0caea55e1c717308056ea285f092c34))
* Collapsible set: Forgot to lint. (TICKETREF, [7069768](http://github.com/jquery/jquery-mobile/commit/7069768462651872021f51df0c23ca8f6bb40d68))
* Collapsible set: Implement "enhanced" option and address #6163. (TICKETREF, [a0e62d7](http://github.com/jquery/jquery-mobile/commit/a0e62d7c1db4268480c8289b6d70a1bde983fe23))
* Collapsible set: Implement _destroy(). (TICKETREF, [9943c87](http://github.com/jquery/jquery-mobile/commit/9943c873056cfc6d52777c9a02ae27289a389f1b))
* Collapsible set: Reflect options that affect the collapsibleSet instead of merely forwarding them all to the children. (TICKETREF, [01301cc](http://github.com/jquery/jquery-mobile/commit/01301cca0ded11a2c3bdcc5e8c6966d022c83327))
* Collapsible set: Start using the new expand()/collapse() public API instead of the signal-based one. Fixes #5271, #5798. ([#5271](http://github.com/jquery/jquery-mobile/issues/5271), [fe60da4](http://github.com/jquery/jquery-mobile/commit/fe60da49b06f42e66a648adbd69f6dff349b4392))
* Collapsible set: Stop relying on _toggleClasses and _setOptions from _create. (TICKETREF, [6675c9a](http://github.com/jquery/jquery-mobile/commit/6675c9a1f0cd95fd3582443525562dea99a3e4ee))
* Collapsible set: Theme inheritance. (TICKETREF, [321fce3](http://github.com/jquery/jquery-mobile/commit/321fce3f21939508d5c579e45145bfd8f8ec8a77))
* Collapsible: Account for the possibility that the collapsibleset widget is not defined. (TICKETREF, [3f6a188](http://github.com/jquery/jquery-mobile/commit/3f6a18890bd1334c232789071b16f42944c5c14d))
* Collapsible: Add refresh() method which basically applies an empty set of options. (TICKETREF, [f380d2a](http://github.com/jquery/jquery-mobile/commit/f380d2a804ba3e9c74d79ace8604f587c8d1e218))
* Collapsible: Address #6163. (TICKETREF, [451bd0b](http://github.com/jquery/jquery-mobile/commit/451bd0b79e4b5da3a10dabb98af85c042c2c5d0b))
* Collapsible: Also check for :mobile-collapsibleset when attempting to determine whether inside an accordion. (TICKETREF, [04a449a](http://github.com/jquery/jquery-mobile/commit/04a449ab4050dc4ff83f454f49256ebab703b573))
* Collapsible: Collecting UI-related variables into this._ui. (TICKETREF, [1b0b033](http://github.com/jquery/jquery-mobile/commit/1b0b03340c7684d5d065cd2faf23ab0c446640a1))
* Collapsible: Consistency in the padding and margin values we use across widgets. (TICKETREF, [0aa7f0a](http://github.com/jquery/jquery-mobile/commit/0aa7f0aa3bb1231d6b3710fc2e2bca1139df0bb3))
* Collapsible: Content theme default to inherit instead of none. (TICKETREF, [63dd22f](http://github.com/jquery/jquery-mobile/commit/63dd22f365077ffa45e7910f7a360bd70df9ed07))
* Collapsible: Detach heading before performing a slew of DOM manips on it and re-attach it afterwards. (TICKETREF, [b860536](http://github.com/jquery/jquery-mobile/commit/b860536b47a6c7c129927fb29117c8568d3afc1b))
* Collapsible: Do not collapse already-collapsed collapsibles. Fixes #5911. Thanks @DzenisevichK. ([#5911](http://github.com/jquery/jquery-mobile/issues/5911), [94b59a3](http://github.com/jquery/jquery-mobile/commit/94b59a339228c181b2051956b475e9864decb295))
* Collapsible: Don't unset the border of nested collapsibles in a set of individual collapsibles. Fixes #6188. ([#6188](http://github.com/jquery/jquery-mobile/issues/6188), [1ffa618](http://github.com/jquery/jquery-mobile/commit/1ffa618c68c20a47c828240f2c3d7d7cb7aadaeb))
* Collapsible: Elaborating on the semantics behind $.mobile.collapsible.defaults. (TICKETREF, [14b532b](http://github.com/jquery/jquery-mobile/commit/14b532b10f35b660331eb533e6f421053d9109c5))
* Collapsible: Get rid of buttonMarkup. (TICKETREF, [57b245e](http://github.com/jquery/jquery-mobile/commit/57b245e62c764111e5d70361e430725c95dbc532))
* Collapsible: Implement _destroy(). (TICKETREF, [561090d](http://github.com/jquery/jquery-mobile/commit/561090d419102eec91db6298f88d1d84d03e4d44))
* Collapsible: Implement public methods expand() and collapse() for programmatic manipulation and trigger namespaced signals via this._trigger() instead of non-namespaced ones. (TICKETREF, [0fcb5c4](http://github.com/jquery/jquery-mobile/commit/0fcb5c49a75c62da9be7f2738ed8d177775cae33))
* Collapsible: Implement the "enhanced" option. (TICKETREF, [c135660](http://github.com/jquery/jquery-mobile/commit/c135660d2dcef188d88113aa42dc633e24d7f1ae))
* Collapsible: Make _setOptions work with possible inheritance from an accordion. (TICKETREF, [17d7b77](http://github.com/jquery/jquery-mobile/commit/17d7b7733de2ab46f85ea87f57440ee3eedc5fa9))
* Collapsible: Make contentTheme an inheritable option. Fixes #6274 - Collapsible set: Dynamically added collapsible doesn't get content theme. ([#6274](http://github.com/jquery/jquery-mobile/issues/6274), [5cc2162](http://github.com/jquery/jquery-mobile/commit/5cc21621b8fb813fa49eeaba9fc975f933e65af7))
* Collapsible: Move handleExpandCollapse() to a widget-level function. (TICKETREF, [b97133b](http://github.com/jquery/jquery-mobile/commit/b97133b8e904c4a653a44f7e8bc6458965c1de04))
* Collapsible: Needs to depend on core, because it uses $.mobile.getAttribute. (TICKETREF, [8565055](http://github.com/jquery/jquery-mobile/commit/856505571fd484976814d85280f26d139b752915))
* Collapsible: Remove buttonMarkup AMD-dependency. (TICKETREF, [8e44d33](http://github.com/jquery/jquery-mobile/commit/8e44d33c1e97ad5caa118f5cfeb6886bbe2a2e91))
* Collapsible: Remove unneeded variables. (TICKETREF, [1f9e699](http://github.com/jquery/jquery-mobile/commit/1f9e69980fd30f65442cd33562bac505ee5bea44))
* Collapsible: Removed padding and icon positioning rules; use global rules from core.css. (TICKETREF, [bb2eda5](http://github.com/jquery/jquery-mobile/commit/bb2eda543b85d52e9c098da66444ea203eca6db7))
* Collapsible: Renaming variable "o" to "opts" for options. (TICKETREF, [1ec1626](http://github.com/jquery/jquery-mobile/commit/1ec16262605ef353e5054cd0ad43f0e45a27be8a))
* Collapsible: Replace jqmData with getAttribute. (TICKETREF, [c692c05](http://github.com/jquery/jquery-mobile/commit/c692c0526e3fd4606feed341822902d89848c8b1))
* Collapsible: Shortening unnecessarily long variable names. (TICKETREF, [9a14309](http://github.com/jquery/jquery-mobile/commit/9a1430953a6dce5dc11566ab58826ae086f7cb7e))
* Collapsible: Stop relying on _toggleClasses and _setOptions from _create. (TICKETREF, [5d6b87a](http://github.com/jquery/jquery-mobile/commit/5d6b87a7e293db98e176d1f2cd382be6163efe6e))
* Collapsible: The negative margin on the container instead of heading and content to fix icon position issues. (TICKETREF, [99aa9b0](http://github.com/jquery/jquery-mobile/commit/99aa9b049c1eb1f35a754c408cbccb65140c687a))
* Collapsible: Theme inheritance. (TICKETREF, [8616e11](http://github.com/jquery/jquery-mobile/commit/8616e1170c87e9d74f413c7d068996b7d887b212))
* Collapsible: There is no need to enhance-depend on page and toolbar. (TICKETREF, [00a29e7](http://github.com/jquery/jquery-mobile/commit/00a29e79d42a80d9aee5a938c899401219f30535))
* Collapsible: Unset margin if it is a set of individual collapsibles. (TICKETREF, [25ea432](http://github.com/jquery/jquery-mobile/commit/25ea432a4347f894a42d88ef72fc95c99146be01))
* Collapsible: When replacing a legend, enhance the replacement before inserting it into the DOM. (TICKETREF, [fc29d74](http://github.com/jquery/jquery-mobile/commit/fc29d7464d11c0f8fff80d6c0e9e7d91480e9433))
* Columntoggle table: Add "role=button" to the "Columns..." button. (TICKETREF, [5348bc4](http://github.com/jquery/jquery-mobile/commit/5348bc4c349bdb9cbf748b7dd529ce0eb7037906))
* Commented out buttonMarkup code that adds button state classes. We are using pseudo classes now. (TICKETREF, [65f28e1](http://github.com/jquery/jquery-mobile/commit/65f28e138f78f8f3fdc426cab2c7c8d016cb8489))
* Content Widget: Remove mobile base widget (TICKETREF, [17ae60a](http://github.com/jquery/jquery-mobile/commit/17ae60ad638c95733aa8c7a2091392b356905783))
* Controlgroup: Added option theme. Fixes #5301. ([#5301](http://github.com/jquery/jquery-mobile/issues/5301), [6bd0caf](http://github.com/jquery/jquery-mobile/commit/6bd0cafc5303a4fe4784fab56d3941b8384efa52))
* Controlgroup: Address #6163. (TICKETREF, [90218eb](http://github.com/jquery/jquery-mobile/commit/90218eb7a15c4673992bac4cb8811d1e617863f5))
* Controlgroup: Call refresh() when the value of the excludeInvisible option changes. Fixes #6199. ([#6199](http://github.com/jquery/jquery-mobile/issues/6199), [07ed62a](http://github.com/jquery/jquery-mobile/commit/07ed62a4b92537a0132d5a85e50b6248c8d6349d))
* Controlgroup: Centralize option setting. (TICKETREF, [2c87df4](http://github.com/jquery/jquery-mobile/commit/2c87df44a8ff74306d129d44f1f4bd149bb1e227))
* Controlgroup: Clarified comment. (TICKETREF, [30fd6fe](http://github.com/jquery/jquery-mobile/commit/30fd6fe933e864d24c6329f3eeeedd1575e7d935))
* Controlgroup: Copy the code for the various setters into _create() for faster instantiation. (TICKETREF, [6403049](http://github.com/jquery/jquery-mobile/commit/64030496e3d13fea0d3c4d24bba1ed8c808f1e14))
* Controlgroup: Correct height of mini icon only buttons. (TICKETREF, [0a6e524](http://github.com/jquery/jquery-mobile/commit/0a6e5245d0e125252a9a6d063dae94eabf40216b))
* Controlgroup: Do not call _setOptions during _create. (TICKETREF, [80eb0ec](http://github.com/jquery/jquery-mobile/commit/80eb0ec1aec0958900172bb48ec01d2834252cda))
* Controlgroup: Fixed the corner styling. (TICKETREF, [fd4567d](http://github.com/jquery/jquery-mobile/commit/fd4567da73b4dbacc34f827457fd5d819aa652b6))
* Controlgroup: Fixed the width of button elements in horizontal controlgroups. (TICKETREF, [014aae6](http://github.com/jquery/jquery-mobile/commit/014aae68e90424cef5982b5741f10016dfcff654))
* Controlgroup: Fixes focus style for controlgroup buttons. (TICKETREF, [4e3da22](http://github.com/jquery/jquery-mobile/commit/4e3da2274c617f7734bbf3a6fc24fe550870b36b))
* Controlgroup: Heed the linter. (TICKETREF, [cbf7a44](http://github.com/jquery/jquery-mobile/commit/cbf7a4435030c358353f96a800be07c4fab6372b))
* Controlgroup: Implement "enhanced" attribute. (TICKETREF, [d9bbfc4](http://github.com/jquery/jquery-mobile/commit/d9bbfc4a5a3f742ff7c55d180ebe6ee3a9ee1537))
* Controlgroup: Implement _destroy(). (TICKETREF, [ebd8499](http://github.com/jquery/jquery-mobile/commit/ebd849903a8a0cbce721650bcc9f5bb1645fe00d))
* Controlgroup: Make legend wrap on IE10. Fixes #6139. ([#6139](http://github.com/jquery/jquery-mobile/issues/6139), [de6c4f9](http://github.com/jquery/jquery-mobile/commit/de6c4f9f6223e277f4586d5d62db3e26653ea130))
* Controlgroup: Prevent ui-group-theme-null class. (TICKETREF, [ebeb23a](http://github.com/jquery/jquery-mobile/commit/ebeb23ad52144cdddb5e06bde16173ce48a8d7da))
* Controlgroup: Remove initSelector. (TICKETREF, [5cff630](http://github.com/jquery/jquery-mobile/commit/5cff630211d2471ce3c1c56bdc1bded95284d8b0))
* Controlgroup: Removed font-size rules that breaks mini style. (TICKETREF, [f1d8503](http://github.com/jquery/jquery-mobile/commit/f1d85038de2a8fe05f41902a7c43db39f96bb7ec))
* Controlgroup: Removed margin on controlgroup in bars. The bar already has padding. (TICKETREF, [fa79896](http://github.com/jquery/jquery-mobile/commit/fa7989665a20e1c9c9ac6cc8923867d08c52e069))
* Controlgroup: Reverse the order of two if-statement branches. (TICKETREF, [240a7df](http://github.com/jquery/jquery-mobile/commit/240a7dfc5eeaa550f2ead81fb2cd3879d2d0efd2))
* Controlgroup: Same style for the controlgroup label (legend) as other labels. (TICKETREF, [35b4b2f](http://github.com/jquery/jquery-mobile/commit/35b4b2faf7ab745d9ef6db7055b0e5ec97d885fb))
* Controlgroup: Set shadow on the inner wrapper. Fixes #5817. ([#5817](http://github.com/jquery/jquery-mobile/issues/5817), [ba3f8fa](http://github.com/jquery/jquery-mobile/commit/ba3f8fa2e07bf7861988b7e2db0ec9514734c938))
* Controlgroup: Stop removing the legend upon _destroy(). (TICKETREF, [2ca0065](http://github.com/jquery/jquery-mobile/commit/2ca00658e4688db58d692f5054f9d0145aba605e))
* Controlgroup: Target buttons inside the controlgroup-controls container only. Fixes #5352. Changes from PR #5821 with some modifications. Thanks @aristotelos ! ([#5352](http://github.com/jquery/jquery-mobile/issues/5352), [963d895](http://github.com/jquery/jquery-mobile/commit/963d895279f3e9b2db124a37816cdd0dc390788a))
* Controlgroup: Updated CSS. Fixes #5484. ([#5484](http://github.com/jquery/jquery-mobile/issues/5484), [83ec301](http://github.com/jquery/jquery-mobile/commit/83ec30103240cdc742ceddf5128d52b1f7a08885))
* Controlgroup: Use button corner radii for controlgroup. (TICKETREF, [fb81047](http://github.com/jquery/jquery-mobile/commit/fb81047aba286bc649d4686ce98a8c24493a5840))
* Controlgroup: Whitespace fix. (TICKETREF, [916efda](http://github.com/jquery/jquery-mobile/commit/916efdaaf36412fa075d2c4bcc78b43240dd46db))
* Controlgroup: ensure load order does not matter for child widgets (TICKETREF, [92ef12a](http://github.com/jquery/jquery-mobile/commit/92ef12ae0f47df8578d6707205bdc5e317f2fbe9))
* Controlgroup: refresh was called twice when widget was created. Legend element is now created when it is needed. (TICKETREF, [2138a09](http://github.com/jquery/jquery-mobile/commit/2138a091500c0c46b3ce1827a53f34f276a02dea))
* Core CSS: No mini size for icon-only buttons when the ui-mini class is on a container. (TICKETREF, [7c768aa](http://github.com/jquery/jquery-mobile/commit/7c768aae04d88a8b87f7795eb2958129c68a323e))
* Core CSS: Overflow-x hidden for page because navbars are wider than the page. Fixes #5566. ([#5566](http://github.com/jquery/jquery-mobile/issues/5566), [9f70f06](http://github.com/jquery/jquery-mobile/commit/9f70f064fc26bfbe3c7feded5a737064bb961a38))
* Core CSS: Unset browser default min-width for fieldset. Fixes #6077. ([#6077](http://github.com/jquery/jquery-mobile/issues/6077), [57adccc](http://github.com/jquery/jquery-mobile/commit/57adccc854961ed2c06431623e6fb1d743e875ab))
* Core: Add param to $.mobile.getAttribute to prefix with "data-" + $.mobile.ns (TICKETREF, [f5a519b](http://github.com/jquery/jquery-mobile/commit/f5a519bda3cdf252c7a5cd71bca6f92ff3e30942))
* Core: Added fix for fieldset width on Firefox. Fixes #6077. ([#6077](http://github.com/jquery/jquery-mobile/issues/6077), [be4649f](http://github.com/jquery/jquery-mobile/commit/be4649f9a21a992fe397c60cb91d703ce9f239a7))
* Core: Break up into data, defaults, and helpers modules (TICKETREF, [c7884ca](http://github.com/jquery/jquery-mobile/commit/c7884ca99a853ea47f4243bd763e6277483a7e85))
* Core: Cleaned up and reduced CSS. (TICKETREF, [b412111](http://github.com/jquery/jquery-mobile/commit/b412111ca8546a47691e1afbe2e0b5a79671ad83))
* Core: Fix comment typo. (TICKETREF, [e5922fa](http://github.com/jquery/jquery-mobile/commit/e5922fa9b879eb413ca860df0f80eeaf5c239cd6))
* Core: Fix dependencies (TICKETREF, [3da7657](http://github.com/jquery/jquery-mobile/commit/3da765759cbacc565be5e7864292e09b7e20734e))
* Core: Fix incorrect useage of $.fn.add (TICKETREF, [8d61fb2](http://github.com/jquery/jquery-mobile/commit/8d61fb20775ba5dbe93fdbfa6540a570f0c68a97))
* Core: Integrate ui core remove keyCode and uuid function from mobile helpers (TICKETREF, [812ce9d](http://github.com/jquery/jquery-mobile/commit/812ce9df58b007ba63d26f14b3424ae3cd5f503c))
* Core: Made buttons in toolbars default to mini and inline. Adjusted ui-btn-left/right offset values. (TICKETREF, [11ca529](http://github.com/jquery/jquery-mobile/commit/11ca529761b696cb5c68e53e92994d9a9c35f3f8))
* Core: Min height for empty toolbars. Fixes #6258. ([#6258](http://github.com/jquery/jquery-mobile/issues/6258), [45863ab](http://github.com/jquery/jquery-mobile/commit/45863abe75d9e59495a8d03a66375debf5ac9ebf))
* Core: Moved ui-screen-hidden class to core.css because we use this in mutiple widgets. (TICKETREF, [b232941](http://github.com/jquery/jquery-mobile/commit/b232941c9ecdb52b08c714689f59111131658cad))
* Core: No icon pseudo element for the loader. (TICKETREF, [e81f81e](http://github.com/jquery/jquery-mobile/commit/e81f81e1c6171071b41fbcd0d0d204df09757c0c))
* Core: Only set a default min-height for the page. Fixes #5755 ([#5755](http://github.com/jquery/jquery-mobile/issues/5755), [412fa36](http://github.com/jquery/jquery-mobile/commit/412fa368f4218e00952fa9783b417ef3f65d3a5e))
* Core: Padding instead of margin top/bottom for the heading ensures the toolbar gets height. (TICKETREF, [1323a8f](http://github.com/jquery/jquery-mobile/commit/1323a8f5f62ff5820790571485d600514680d7b2))
* Core: Prevent additional space at bottom of fieldsets on Firefox. Fixes #6319. ([#6319](http://github.com/jquery/jquery-mobile/issues/6319), [1524ea1](http://github.com/jquery/jquery-mobile/commit/1524ea17c290b97a4e79c8e6a776923b2090efc0))
* Core: This was only needed because the loader and buttons with icons both got the ui-icon class, but that is gone. (TICKETREF, [a19b4df](http://github.com/jquery/jquery-mobile/commit/a19b4df038ab1d45b7cdf03a4cb5093f7e4bfc20))
* Core: Update key codes. fix incorrect ones and update to match UI. (TICKETREF, [c57dfa3](http://github.com/jquery/jquery-mobile/commit/c57dfa3d3e33b782d776b9454db49abc59d9358b))
* Core: Use a not div for wrapper elements and slash is not needed ( saves bytes ) (TICKETREF, [d36059f](http://github.com/jquery/jquery-mobile/commit/d36059f3674f93e7dd305f5d6f5dcc7493036adf))
* Core: Use add not merge for adding dependants. (TICKETREF, [3f1e1c5](http://github.com/jquery/jquery-mobile/commit/3f1e1c567cf7a07be40126cebfb51fbcfd213fd2))
* Core: moved clear button and buttons in grids rules to the files where they belong. (TICKETREF, [bf50400](http://github.com/jquery/jquery-mobile/commit/bf50400e79da6d5734f4084af858c169914a8afd))
* Core: properly extend mobile object (TICKETREF, [fd2be73](http://github.com/jquery/jquery-mobile/commit/fd2be73b4405aab04d1b1dac8575adaa6175bceb))
* Cored: remove redunant check of prop in nsNormalize (TICKETREF, [b8f8447](http://github.com/jquery/jquery-mobile/commit/b8f844741161d9c192447cba5c944be1f9be28c8))
* Correction icon shadow class of dialog close button and listview split button. (TICKETREF, [8140412](http://github.com/jquery/jquery-mobile/commit/8140412dee710466801fc81f9d66de67e3482266))
* Correction in check icon background-image url. (TICKETREF, [7182ec0](http://github.com/jquery/jquery-mobile/commit/7182ec04f477bdc68b72eb87020b81bec3933029))
* Count bubble theming. (TICKETREF, [b879369](http://github.com/jquery/jquery-mobile/commit/b879369e05300105cf27ab93444d6ec1f1468e20))
* Count bubbles: Use body theme. Adjusted border radius and font size. (TICKETREF, [072c703](http://github.com/jquery/jquery-mobile/commit/072c7030dbe6c87ab4083f0399e93c36abe1fab0))
* Created grunt task cssbuild (TICKETREF, [79e6089](http://github.com/jquery/jquery-mobile/commit/79e608976540092cb5f9adc397aeaa20a8b726c5))
* Custom select: Add "role=button" to multiple select popup close button. (TICKETREF, [f7c0578](http://github.com/jquery/jquery-mobile/commit/f7c0578950fe0e38067a3aaba25585e8981126b0))
* Custom select: Adding the menu page to the list of dependents has no effect, removing. (TICKETREF, [a30522e](http://github.com/jquery/jquery-mobile/commit/a30522ee1154ea189236fe03b756e375072f7fab))
* Custom select: Call the close() method upon "popupafterclose" by binding it via this._on(). (TICKETREF, [571b4f3](http://github.com/jquery/jquery-mobile/commit/571b4f3c4e784611b688f94c84e1e90206c1c865))
* Custom select: Convert to extension. (TICKETREF, [80ea8cf](http://github.com/jquery/jquery-mobile/commit/80ea8cf50059830c968eb83d615936219c7dc60f))
* Custom select: Escape weird characters in popup/dialog ID when they become hrefs. Fixes #5893. ([#5893](http://github.com/jquery/jquery-mobile/issues/5893), [f0b2417](http://github.com/jquery/jquery-mobile/commit/f0b2417d4d8cbd84903fe9c1112a34b1ef13a039))
* Custom select: Get rid of buttonMarkup. (TICKETREF, [0bf39e1](http://github.com/jquery/jquery-mobile/commit/0bf39e141d96463f959ae61573eb95f31ec5f647))
* Custom select: Instead of determining the option that was clicked via a selector, use the "data-option-index" attribute that was set during list creation. (TICKETREF, [5c99158](http://github.com/jquery/jquery-mobile/commit/5c99158f95e839929906a796f5ed2715ac29cc90))
* Custom select: Moving binding that causes the dialog page to be destroyed into the widget prototype and calling it _handleMenuPageHide(). (TICKETREF, [77143ac](http://github.com/jquery/jquery-mobile/commit/77143ac9e56b1ed41d4ccf5eef671597b01e1f9e))
* Custom select: Moving binding that closes popup when the user clicks onto the header's close button into the widget prototype and calling it _handleHeaderCloseClick(). (TICKETREF, [bdf50bf](http://github.com/jquery/jquery-mobile/commit/bdf50bf5e0b80f40bf10a391e0f430552972faf7))
* Custom select: Moving binding that opens the select into the widget prototype and calling it _handleButtonVclickKeydown(). (TICKETREF, [b17e504](http://github.com/jquery/jquery-mobile/commit/b17e50439838b026de5596f2048e39851e64845f))
* Custom select: Moving binding that transfers focus from the native widget to the button into the widget prototype and calling it _handleSelectFocus(). (TICKETREF, [a0c6e1a](http://github.com/jquery/jquery-mobile/commit/a0c6e1ace2b3f2df1d058b2892a127f86858bd9b))
* Custom select: Moving focusMenuItem() into the widget prototype and calling it _focusMenuItem(). (TICKETREF, [e7691a7](http://github.com/jquery/jquery-mobile/commit/e7691a7c07ea40cf222930d59e41ad6d6395d150))
* Custom select: Moving item-to-item focus transfer binding into the widget prototype and calling it _handleListFocus(). (TICKETREF, [04b2f73](http://github.com/jquery/jquery-mobile/commit/04b2f7382054a75f78e4d39322c8261d323056be))
* Custom select: Must un-hide popup container before calculating height. (TICKETREF, [541f963](http://github.com/jquery/jquery-mobile/commit/541f963abfe2e228394ae4577a718b8c28f8a348))
* Custom select: Remove dialog upon _destroy. Fixes #5935 - Dynamic Select empty when opening second time. ([#5935](http://github.com/jquery/jquery-mobile/issues/5935), [afabf5b](http://github.com/jquery/jquery-mobile/commit/afabf5b81b7b24c9f6d1c54c97ec5b8f72787fa1))
* Custom select: Removing some references to "self" in build(). (TICKETREF, [a0ffdef](http://github.com/jquery/jquery-mobile/commit/a0ffdefe2ae0f2b41fa6235e61531e40af9a1402))
* Custom select: Stop referring so much to this.options in build(), using o = this.options instead. (TICKETREF, [0356e67](http://github.com/jquery/jquery-mobile/commit/0356e676d27cac7871192d6a545724c16dd8af10))
* Custom select: Theme inheritance. (TICKETREF, [326a110](http://github.com/jquery/jquery-mobile/commit/326a1102bafff5eed6f0948e6f898cdb4986a1c4))
* Custom select: Update selectors for focusing a menu item when the option list first appears on screen. (TICKETREF, [7b9ca16](http://github.com/jquery/jquery-mobile/commit/7b9ca166928e50cfda99accf82db538d7f85fbbf))
* Custom select: Work with filterable. Fixes #6326. ([#6326](http://github.com/jquery/jquery-mobile/issues/6326), [4405004](http://github.com/jquery/jquery-mobile/commit/440500446c4bfdd6b4eb5dffd1595302805875a2))
* Data: Copy string-to-proper-type conversion logic from the file src/data.js located in the jQuery core repository. (TICKETREF, [359db31](http://github.com/jquery/jquery-mobile/commit/359db31fd973db49c806b44e092de4f146b1c8b3))
* De-linting. (TICKETREF, [e34f138](http://github.com/jquery/jquery-mobile/commit/e34f138c285ee196337998e5ecc20874d4257bf1))
* Default version string to package version Added prepending of long copyright to unminified javascript bundle (TICKETREF, [fc3e280](http://github.com/jquery/jquery-mobile/commit/fc3e280af36ca61f3c4ffc94c6ebe2891ab3dade))
* Default version to "dev" if no pkg is available (TICKETREF, [b4ebce1](http://github.com/jquery/jquery-mobile/commit/b4ebce1577785e4f496dbe3b1b5a4fc6b79bf9e4))
* Defaults: add deprecation coments (TICKETREF, [bbb1171](http://github.com/jquery/jquery-mobile/commit/bbb1171a92d70b31f8b1135f6721fdbcb7cf9a60))
* Defaults: changed default of pageLoadErrorMessageTheme to "a". Fixes #6303. ([#6303](http://github.com/jquery/jquery-mobile/issues/6303), [879b4a7](http://github.com/jquery/jquery-mobile/commit/879b4a791ed021cbd57c0cfdcefb27b7350dc35a))
* DegradeInput: move to $.mobile.degradeInputs deprecate on page widget (TICKETREF, [20433c6](http://github.com/jquery/jquery-mobile/commit/20433c629c1db129175933707b0460ebdf2c79f1))
* Demo Center: added test suite with button, form and listview test pages. (TICKETREF, [a7440ea](http://github.com/jquery/jquery-mobile/commit/a7440eae4658feb85a71eb7cbade45591ae66b9c))
* Demos: Accordion: Oops! Accidentally removed most of the file. (TICKETREF, [5114673](http://github.com/jquery/jquery-mobile/commit/511467359619ec3104d4fd1e8fb750fcdf25bd01))
* Demos: Add example showing a filterable/input inside a custom select popup/dialog. Fixes #6282. ([#6282](http://github.com/jquery/jquery-mobile/issues/6282), [391714b](http://github.com/jquery/jquery-mobile/commit/391714b2ec2f16fc2a0df00127f06f4ae2c3adbd))
* Demos: Add popup alignment demo featuring new popup extension. Fixes #6186,#6187. ([#6186](http://github.com/jquery/jquery-mobile/issues/6186), [fb03c14](http://github.com/jquery/jquery-mobile/commit/fb03c14b4f83b77c508d4722e9473495830e2063))
* Demos: Add pre-enhanced popup example. (TICKETREF, [bdcd5a4](http://github.com/jquery/jquery-mobile/commit/bdcd5a4afa33e2f016d72fecbfc9bff322c21f80))
* Demos: Added another bp to optimize left/right margin. Aligned search with nav icon. (TICKETREF, [1db84be](http://github.com/jquery/jquery-mobile/commit/1db84beb0fe2b9ef3f7bed4e6a726c10f55d3c59))
* Demos: Added button and input icon-only examples to button test page (TICKETREF, [fa8403d](http://github.com/jquery/jquery-mobile/commit/fa8403da0a7c3b51895e33a667e5cf2947b60758))
* Demos: Added class ui-filterable to filter listview example. (TICKETREF, [42e8088](http://github.com/jquery/jquery-mobile/commit/42e8088ed3d5e77180fdabcf1ed04558a4095e71))
* Demos: Added custom CSS for filter inside custom selectmenu demo. (TICKETREF, [9413c47](http://github.com/jquery/jquery-mobile/commit/9413c4703d4a3cbd58b43b853c957118b7e7354e))
* Demos: Added external fixed toolbars to panel test pages. (TICKETREF, [edcd958](http://github.com/jquery/jquery-mobile/commit/edcd95806faca220be30f1023beaba5add814f19))
* Demos: Added missing class. (TICKETREF, [b6d9912](http://github.com/jquery/jquery-mobile/commit/b6d99128c71d1421c94ca3bd1548c9b6997ec684))
* Demos: Added missing height and width to image in popup example. (TICKETREF, [570e710](http://github.com/jquery/jquery-mobile/commit/570e7107b472d39d50956d75df06724f22c264e1))
* Demos: Added navbars to theming test page. (TICKETREF, [79b53d6](http://github.com/jquery/jquery-mobile/commit/79b53d6302bdb5591f14cbb2e03c54a694de103f))
* Demos: Added note to the PHP redirect demo that says it only works on a server. (TICKETREF, [83c746e](http://github.com/jquery/jquery-mobile/commit/83c746ec6c3742a84047a003832a9ff3989996b9))
* Demos: Added panels test pages (TICKETREF, [f28140f](http://github.com/jquery/jquery-mobile/commit/f28140f0814c67a9ae4d42485e3cd17e016be46a))
* Demos: Added panels test pages (TICKETREF, [f8df9c6](http://github.com/jquery/jquery-mobile/commit/f8df9c6a4f4e3c17e4c1e5108535bed67eb04b21))
* Demos: Added panels to theming test page. (TICKETREF, [c021d43](http://github.com/jquery/jquery-mobile/commit/c021d437cf0287ce3067af62e8681184b53f692f))
* Demos: Added single page template example. Fixes #5716 ([#5716](http://github.com/jquery/jquery-mobile/issues/5716), [6b41a21](http://github.com/jquery/jquery-mobile/commit/6b41a2191548368837564cc858b8ecc1a6d32e47))
* Demos: Added the custom select demo page. (TICKETREF, [5afefdd](http://github.com/jquery/jquery-mobile/commit/5afefdd1eb60cf703b9530673237fd095cf2bf61))
* Demos: Added theme C to Grunticon test page. (TICKETREF, [a908ab5](http://github.com/jquery/jquery-mobile/commit/a908ab5007e00608d8954981fae8636e9e640f27))
* Demos: Added theming test page. (TICKETREF, [dba9c92](http://github.com/jquery/jquery-mobile/commit/dba9c9233be0f56031fad83c5077f03cb30a2fab))
* Demos: Changed API link buttons icon. (TICKETREF, [d598c7b](http://github.com/jquery/jquery-mobile/commit/d598c7b745d1d7c00d7b55c9dd322e0f6962b9aa))
* Demos: Changed a class in custom navbar icons example. (TICKETREF, [91adb5d](http://github.com/jquery/jquery-mobile/commit/91adb5df52751c02e767196ceba971dc58669e0b))
* Demos: Changed the way the version is set on demo pages (TICKETREF, [a992db2](http://github.com/jquery/jquery-mobile/commit/a992db295bb43265341881b48e0c9e3c5fb11d07))
* Demos: Changed theme C, D, and E to A or B. (TICKETREF, [38d8b72](http://github.com/jquery/jquery-mobile/commit/38d8b72a25417002cdd42b78f8d5e783f576faea))
* Demos: Changed view source button icon. (TICKETREF, [4743967](http://github.com/jquery/jquery-mobile/commit/47439673279db72e6992e6433f6690291781e0fd))
* Demos: Collapsible: Provide an example of a pre-rendered collapsible. (TICKETREF, [83724c6](http://github.com/jquery/jquery-mobile/commit/83724c6f9e2d8eb72d823872b0a14d6a94c10175))
* Demos: Completed move from docs to demos (TICKETREF, [d3fc23b](http://github.com/jquery/jquery-mobile/commit/d3fc23b71ce81105651cc6a7f9ea4b89462d18c4))
* Demos: Controlgroup: Adding example of a pre-rendered controlgroup. (TICKETREF, [dc9bf3e](http://github.com/jquery/jquery-mobile/commit/dc9bf3eaf1879378421e1057fc7b805f7c2c10a2))
* Demos: Correct order of markup in slider flip switch example. (TICKETREF, [212d612](http://github.com/jquery/jquery-mobile/commit/212d61203ba5a171253fb796cd9a1e0a5d41a78e))
* Demos: Correction JS and CSS source panel test pages. (TICKETREF, [9bc1792](http://github.com/jquery/jquery-mobile/commit/9bc179246880ee00cb580017c01cbc40498ff6f3))
* Demos: Correction JS and CSS source panel test pages. (TICKETREF, [e21a933](http://github.com/jquery/jquery-mobile/commit/e21a9331918c53b8e9b594cdbe187e947f562a92))
* Demos: Custom select: Typo. (TICKETREF, [ab183d9](http://github.com/jquery/jquery-mobile/commit/ab183d9a453622738d66b1777d11f65aee29753f))
* Demos: Custom swatches are only meant for view source collapsibles. (TICKETREF, [e9801b6](http://github.com/jquery/jquery-mobile/commit/e9801b66cf9e0f87813a9f3d11c4831c4ea84077))
* Demos: Dynamic theme inheritance test page. (TICKETREF, [baf3832](http://github.com/jquery/jquery-mobile/commit/baf38323d2971008100898b69b257b0589f7d905))
* Demos: Enhance front page widget list and global search list via autoinit instead of explicit calls to .filtertext(). (TICKETREF, [9cc1516](http://github.com/jquery/jquery-mobile/commit/9cc1516936c7978a6680e3173a0f694b7447ff6b))
* Demos: Examples: Added utility for generating popup arrow CSS. (TICKETREF, [d08b0cb](http://github.com/jquery/jquery-mobile/commit/d08b0cb28d2750c4403341f023c3bf19e8cf9d05))
* Demos: Filterable inside custom select demo custom dialog style. (TICKETREF, [245df8b](http://github.com/jquery/jquery-mobile/commit/245df8b916d3356edefdecfdc5fcaad4abf3455b))
* Demos: Filterable: Fix the wording and the examples. (TICKETREF, [43b5d8b](http://github.com/jquery/jquery-mobile/commit/43b5d8bd733eb6f5126c4cded9a513795961d4ee))
* Demos: Filterable: Re-worked to reflect the current state of the widget. Fixes #6227, #6229, #6230, #6231. ([#6227](http://github.com/jquery/jquery-mobile/issues/6227), [a405b66](http://github.com/jquery/jquery-mobile/commit/a405b6656bcbf414cb0bf2b139c5d1dccef88c21))
* Demos: First pass on fixing view source style. (TICKETREF, [ad6f46e](http://github.com/jquery/jquery-mobile/commit/ad6f46e12f37e65267196af1c4cefc9ffd40cc6f))
* Demos: Fixed collapsible custom border style demo. (TICKETREF, [292bf8c](http://github.com/jquery/jquery-mobile/commit/292bf8ce8afaed263064bbfb79c5260f5ed6ff7e))
* Demos: Fixed references to jqm-docs -> jqm-demos (TICKETREF, [06c3a81](http://github.com/jquery/jquery-mobile/commit/06c3a818fdf7882db0795341e782462cf0069805))
* Demos: Fixed the footer and the panel theme. (TICKETREF, [aa1660b](http://github.com/jquery/jquery-mobile/commit/aa1660b3b27b167af440ebffcec68fbd6505958c))
* Demos: Fixed the responsive table example on the filter demo page. (TICKETREF, [bd6a849](http://github.com/jquery/jquery-mobile/commit/bd6a849ffc54a1c8315db8c99a19be9a499ac6b7))
* Demos: Fixed wrong data-role in popup example. (TICKETREF, [6dd6154](http://github.com/jquery/jquery-mobile/commit/6dd6154b9da62e7e91e1a7a8d6cb734624db84b5))
* Demos: Forms: Removed duplicate </form> (TICKETREF, [af46f0e](http://github.com/jquery/jquery-mobile/commit/af46f0ef7738fdf9b01ff70e3e353383acfbf844))
* Demos: Getting rid of the vertical scrollbar on the page. Fixes #6024. ([#6024](http://github.com/jquery/jquery-mobile/issues/6024), [6aa1146](http://github.com/jquery/jquery-mobile/commit/6aa1146cf37c8d6f7baa5f17dc3e11039d8b92f4))
* Demos: I forgot to change the filenames when I updated the Grunticon loader script. (TICKETREF, [8bd7b70](http://github.com/jquery/jquery-mobile/commit/8bd7b70de409161a54f294fd625c5c70c76ddb23))
* Demos: Icon test page. (TICKETREF, [8bdd2cf](http://github.com/jquery/jquery-mobile/commit/8bdd2cfba3e222e03cc379496184823f39db4332))
* Demos: Label didn't match example. (TICKETREF, [bf430aa](http://github.com/jquery/jquery-mobile/commit/bf430aaa2f59796e765d9c0614f5391532309e5b))
* Demos: Link to panel test page. (TICKETREF, [d2dd590](http://github.com/jquery/jquery-mobile/commit/d2dd590b428620781d0ed49befe9649433f1a1e5))
* Demos: Made one read-only listview example inset for testing. (TICKETREF, [2554f82](http://github.com/jquery/jquery-mobile/commit/2554f828d49bc9c861fb55a926e6206df2fbaa16))
* Demos: Minor typo correction to grid-listview.php (TICKETREF, [ed1d5f8](http://github.com/jquery/jquery-mobile/commit/ed1d5f8adc3060ce1ec619d4a51c5ba74eb6d3fd))
* Demos: Move widgets/filter to widgets/filterable (TICKETREF, [642d1eb](http://github.com/jquery/jquery-mobile/commit/642d1eb3a1fa3134865bd3d76e3accfdff540f48))
* Demos: Moving links from external header to the page because I am an idiot. (TICKETREF, [978d370](http://github.com/jquery/jquery-mobile/commit/978d370cd990d0eb6c5973e271e685e36ecd2320))
* Demos: New intro paragraph for table column toggle page. Fixes #5737 ([#5737](http://github.com/jquery/jquery-mobile/issues/5737), [b9d0bf1](http://github.com/jquery/jquery-mobile/commit/b9d0bf10daf12c90970df62f987cdca27176edfd))
* Demos: Only need to set data-mini on the controlgroup, not on the buttons inside. (TICKETREF, [0710592](http://github.com/jquery/jquery-mobile/commit/0710592203b50d64ecc4b3ca3a38124f43cf0f90))
* Demos: Panel test page changes. (TICKETREF, [d62b634](http://github.com/jquery/jquery-mobile/commit/d62b63428bb794e4ac57ec95f6d9157c73c22a55))
* Demos: Panel test page; enhancing external fixed toolbars must be done on pageshow. (TICKETREF, [e18e134](http://github.com/jquery/jquery-mobile/commit/e18e134fe6d29b356ad784c4894fe3bf2ed9952c))
* Demos: Popup arrow size example: Reflect the new arrow CSS. (TICKETREF, [7dd333e](http://github.com/jquery/jquery-mobile/commit/7dd333ede2c48a4e504c5a6dfa79003c64d6761a))
* Demos: Popup arrow: Appear only upon a click within the designated clicking area. (TICKETREF, [4b8827c](http://github.com/jquery/jquery-mobile/commit/4b8827c60753c2c22daac49d709bdb53bf03c117))
* Demos: Popup arrow: Let the mouse pass through the box showing where the arrow will point to. (TICKETREF, [19eb669](http://github.com/jquery/jquery-mobile/commit/19eb669ef2dffb14bf4b5d982bd1b29e425b2d50))
* Demos: Popup widget: Add arrow demo. (TICKETREF, [e77c720](http://github.com/jquery/jquery-mobile/commit/e77c720ba61604bf66eabc81588e7a93d5bf1a48))
* Demos: Popup: Change wording from "pre-enhanced" to "pre-rendered" to better reflect the concept. Thanks jzaefferer. (TICKETREF, [60159eb](http://github.com/jquery/jquery-mobile/commit/60159eb0913ab3442bd51a616b51977065b5ae5b))
* Demos: Popup: Forgot data-role="page" on the pre-rendered popup example page. (TICKETREF, [1605e1e](http://github.com/jquery/jquery-mobile/commit/1605e1ed255c23247e4f635d5fe82e80414a5493))
* Demos: Popup: Removed weird (and almost certainly accidental) popup-inside-popup embedding. (TICKETREF, [4523761](http://github.com/jquery/jquery-mobile/commit/4523761fa9a36b69e557813dc5753eec1134c72a))
* Demos: Popup: The word "pre-enhanced" was still there in one place. (TICKETREF, [55186a1](http://github.com/jquery/jquery-mobile/commit/55186a14ec04345b31ffe28660b7a0c02bb9dff1))
* Demos: Removed "Final" from the version string (TICKETREF, [d94bce1](http://github.com/jquery/jquery-mobile/commit/d94bce18c5f79a65a430693ffb1eb77e307eda42))
* Demos: Removed 3rd swatch from test pages. (TICKETREF, [3e3613b](http://github.com/jquery/jquery-mobile/commit/3e3613bcd3c281a61a182d0b6ca72337bc363c46))
* Demos: Removed container divs from test pages. (TICKETREF, [d1dbe43](http://github.com/jquery/jquery-mobile/commit/d1dbe43f12523d8f50fb292eb3037fb83f732c0b))
* Demos: Removed panel workaround. Problem has been fixed in framework. (TICKETREF, [cd920a7](http://github.com/jquery/jquery-mobile/commit/cd920a7d1802d35ad0b16fcff0da09110e462640))
* Demos: Removed temporary CSS after fixing the issue in the framework CSS. (TICKETREF, [dd9771c](http://github.com/jquery/jquery-mobile/commit/dd9771c6946c653281752790b25d6289dfb1e5e6))
* Demos: Removed temporary test pages. Updated theming test pages. (TICKETREF, [5edd0a2](http://github.com/jquery/jquery-mobile/commit/5edd0a2442b8a1ae0b886e6da7d029d6c61d309e))
* Demos: Removed unwanted data-ajax="false" attributes from links. Fixes #6344. ([#6344](http://github.com/jquery/jquery-mobile/issues/6344), [76a90c0](http://github.com/jquery/jquery-mobile/commit/76a90c0600feb24cc57566912fd3183404543cbc))
* Demos: Renamed docs to demos (TICKETREF, [fdb1838](http://github.com/jquery/jquery-mobile/commit/fdb1838512f466b6c76d122e6b209d3e6ff0dca8))
* Demos: Revert new flip switch select example to on/off because it is good show the different order of the option elements compared to slider flip switch. (TICKETREF, [1dda26d](http://github.com/jquery/jquery-mobile/commit/1dda26d968aa92c85eeecc66d069208e06b22619))
* Demos: Reverted a test page change that wasn't supposed to be committed. (TICKETREF, [44f46a1](http://github.com/jquery/jquery-mobile/commit/44f46a138deee83939184d8514b3d4c2a682e5c2))
* Demos: Selects: Include a link to the custom selects page. (TICKETREF, [bd30ca9](http://github.com/jquery/jquery-mobile/commit/bd30ca98594075f9eae234fc6f051bf9b73b37d7))
* Demos: Separate demo page for new flipswitch widget. (TICKETREF, [d0e94b4](http://github.com/jquery/jquery-mobile/commit/d0e94b436c1ac4b7fb55740e1ad7abe06b901467))
* Demos: Set font-size for body and page back to 1em to make sure examples show default styles. (TICKETREF, [7171313](http://github.com/jquery/jquery-mobile/commit/7171313cdf7fd2dd45b4600084b86ce3b4d63567))
* Demos: Slider tooltip: Demo mini slider. (TICKETREF, [6067713](http://github.com/jquery/jquery-mobile/commit/6067713f0b7fb8cad01a93b926bf6688cc50f167))
* Demos: Some changes in theme inheritance test page. (TICKETREF, [5f6dca6](http://github.com/jquery/jquery-mobile/commit/5f6dca65510856a02fac351758af98038fa1a682))
* Demos: Stop hitting page listviews with an additional _setOptions() and _init(). (TICKETREF, [b8670b7](http://github.com/jquery/jquery-mobile/commit/b8670b75ddb053dfa0249815fec27249057b851a))
* Demos: Test new flip switch with values other than on and off. (TICKETREF, [e648412](http://github.com/jquery/jquery-mobile/commit/e6484123dde4ef6c1ff3bb98e108f70919fcf8ed))
* Demos: Typo. (TICKETREF, [34fab9f](http://github.com/jquery/jquery-mobile/commit/34fab9f8a8b9f6ccc1175d26f5eeb1b1af35184f))
* Demos: Updated Grunticon stylesheet loader. (TICKETREF, [32cfdfe](http://github.com/jquery/jquery-mobile/commit/32cfdfe44fd60fe15e2346f0483b32bbbf479171))
* Demos: Updated button in grid demo. Blocks should always be direct child of grid. (TICKETREF, [b357feb](http://github.com/jquery/jquery-mobile/commit/b357feb5ee5efd377f3ebe76219fcdc37f0c28b0))
* Demos: Updated comment above example CSS for clarification. Fixes #5889. ([#5889](http://github.com/jquery/jquery-mobile/issues/5889), [f3e6b23](http://github.com/jquery/jquery-mobile/commit/f3e6b23ca117f4e08707babb686a3943bcbe32f0))
* Demos: Updated custom icon examples. (TICKETREF, [3fe79fe](http://github.com/jquery/jquery-mobile/commit/3fe79fed3f19c5d772a2d984e375b730fd68aca7))
* Demos: Updated dynamic collapsibles demo to 1.4. (TICKETREF, [e5e5ab9](http://github.com/jquery/jquery-mobile/commit/e5e5ab9e1e8b98ebcb22fbbc90817b59103a0aa5))
* Demos: Updated filterable page to reflect latest changes. (TICKETREF, [86a6f06](http://github.com/jquery/jquery-mobile/commit/86a6f069b02b8c1ef103372941c6f48e11e71161))
* Demos: Updated filterable to mention class ui-filterable and remove option inset for the search input. (TICKETREF, [23e429e](http://github.com/jquery/jquery-mobile/commit/23e429e0a37aeb98b78161c032b43af97dad5dfb))
* Demos: Updated grid and buttons in grids demo pages. (TICKETREF, [6db15d1](http://github.com/jquery/jquery-mobile/commit/6db15d13bc8dfbf2f8b9b36b3dd5671cd5c33d20))
* Demos: Updated individual collapsibles "single border" example. (TICKETREF, [eae4397](http://github.com/jquery/jquery-mobile/commit/eae43970e03a0d12429002378ee5c4d36e5d3cfb))
* Demos: Updated listview custom icon example. (TICKETREF, [2490982](http://github.com/jquery/jquery-mobile/commit/2490982b5cbaa61842fc54a9e804122256a6253d))
* Demos: Updated listview widget default icons in our custom JS. (TICKETREF, [ef009c6](http://github.com/jquery/jquery-mobile/commit/ef009c6631097e5504bca92694a09a3b3187bc00))
* Demos: Updated responsive panel example CSS. (TICKETREF, [04b28f1](http://github.com/jquery/jquery-mobile/commit/04b28f125d92126d388f4bbb1dc53fd922e53c8f))
* Demos: Updated responsive panels CSS example. Fixes #5936. ([#5936](http://github.com/jquery/jquery-mobile/issues/5936), [6064163](http://github.com/jquery/jquery-mobile/commit/6064163fdb9798a9a8e447a460253b8eedecc724))
* Demos: Updated some defaults in the custom JS. (TICKETREF, [e5aefcc](http://github.com/jquery/jquery-mobile/commit/e5aefcc25b9b70a32720720c17a32a0e3d90e87e))
* Demos: Updated version to 1.4-alpha.2, core versions 1.8.3-1.10.2 and 2.0.3. (TICKETREF, [ff194e0](http://github.com/jquery/jquery-mobile/commit/ff194e00727d989005be9ae6e41871a368d54ce5))
* Demos: View source: Grab HTML-only full-page demos as well. (TICKETREF, [a50c0d1](http://github.com/jquery/jquery-mobile/commit/a50c0d1a6e245825128a65a8ef94466dbe5e3acb))
* Demos: View source: No need to parse HTML when all you want is a text node. (TICKETREF, [771535b](http://github.com/jquery/jquery-mobile/commit/771535b06be85a5aebc025c01ebfb8a4664383f1))
* Demos: added collapsing border styling to custom responsive grid example (TICKETREF, [3e4bc84](http://github.com/jquery/jquery-mobile/commit/3e4bc84a41e2906c5f451d933dbea54cc9c39de7))
* Demos: changed example to match the description. (TICKETREF, [25abed5](http://github.com/jquery/jquery-mobile/commit/25abed51b026b8135cc153a8b831efcaf6f0a613))
* Demos: changed theme from swatch "d" to "a". (TICKETREF, [bfe9eb9](http://github.com/jquery/jquery-mobile/commit/bfe9eb9554d9141c50090a6204369fcf2b4a6df9))
* Demos: cleaned up buttons in grids page (TICKETREF, [7738bb5](http://github.com/jquery/jquery-mobile/commit/7738bb515126de96313ba57b6670fd094fb95190))
* Demos: cleaned up markup of "Page widget" page. (TICKETREF, [0f55dd6](http://github.com/jquery/jquery-mobile/commit/0f55dd6d16252170ff83a0c2b8b7aae0fc6c51f2))
* Demos: copy editing of panel fixed positioning demo. (TICKETREF, [48a1de8](http://github.com/jquery/jquery-mobile/commit/48a1de8c0684176df21afadefa111bf6ab967665))
* Demos: copy editing of panel styling demo. (TICKETREF, [cb0ee3d](http://github.com/jquery/jquery-mobile/commit/cb0ee3dc469c2108dcfde864532f86e2719d8766))
* Demos: data-ajax="false" for link to loader widget page. Thanks @jakeboone02! (TICKETREF, [496c55e](http://github.com/jquery/jquery-mobile/commit/496c55eb8c9645205540efa6259de00baaf7a2f8))
* Demos: fix broken link (TICKETREF, [7ecbd52](http://github.com/jquery/jquery-mobile/commit/7ecbd52e355e75c89673e6c457f3b10fa2491d68))
* Demos: fixed a typo (TICKETREF, [4d3e3b6](http://github.com/jquery/jquery-mobile/commit/4d3e3b6368d882784ef32ebdb4d82ad95c0b853a))
* Demos: fixed broken home links. (TICKETREF, [574793b](http://github.com/jquery/jquery-mobile/commit/574793b75ff5277c1312fc2678c89620ad6a22f1))
* Demos: fixed broken link to custom responsive grid example (TICKETREF, [fef5da9](http://github.com/jquery/jquery-mobile/commit/fef5da9b33a36a01004408803e290987b2177589))
* Demos: fixed broken link to homepage on search results page. (TICKETREF, [6173c63](http://github.com/jquery/jquery-mobile/commit/6173c63fbe6d29bdfe025b231ee6ee5c7d41bacc))
* Demos: fixed broken link to remote autocomplete demo. fixes #5744 (TICKETREF, [c94fd82](http://github.com/jquery/jquery-mobile/commit/c94fd82deaa2a2f506ab2fc15106790ae983326a))
* Demos: fixed broken links (TICKETREF, [fe754c9](http://github.com/jquery/jquery-mobile/commit/fe754c9cc38db73ca120f9f98a6c9c658bca536f))
* Demos: fixed typo. Fixes #5752 ([#5752](http://github.com/jquery/jquery-mobile/issues/5752), [cda9fcd](http://github.com/jquery/jquery-mobile/commit/cda9fcd25c83d2eb3ce637a256f73603eb6fc659))
* Demos: hide the global search list while the global nav panel is open. (TICKETREF, [da015b7](http://github.com/jquery/jquery-mobile/commit/da015b748dbf0bb53447f2ebc429adf146a0219d))
* Demos: improved dynamic controlgroup demo. (TICKETREF, [1f8302d](http://github.com/jquery/jquery-mobile/commit/1f8302d09ceaf8882684bc1c9250a0eea79bde20))
* Demos: improvements to fixed toolbar demo pages. (TICKETREF, [79b6df8](http://github.com/jquery/jquery-mobile/commit/79b6df8728415d933ff735429f8751f62ed53dea))
* Demos: improvements to form pages. (TICKETREF, [81c765e](http://github.com/jquery/jquery-mobile/commit/81c765ea72a98739b6aa9cfb5880ac3c4ddcda5e))
* Demos: loader widget demo - coding standards. (TICKETREF, [a9cde70](http://github.com/jquery/jquery-mobile/commit/a9cde70be8998ad14af309c06fa065a991883e89))
* Demos: made menu title match page title (TICKETREF, [28f1bbb](http://github.com/jquery/jquery-mobile/commit/28f1bbbd23716ccec9d69f2ec7581b2962bfd18f))
* Demos: re-ordered CSS a bit, just so you might find what you are looking for. (TICKETREF, [da56a86](http://github.com/jquery/jquery-mobile/commit/da56a866be293752337f736eadface97759bc9cd))
* Demos: removed broken link from FAQ page. Fixes #5828 ([#5828](http://github.com/jquery/jquery-mobile/issues/5828), [fd3feac](http://github.com/jquery/jquery-mobile/commit/fd3feac5a62461cbc808ba770f7588e57187e940))
* Demos: removed superfluous media types from MQ's (TICKETREF, [d2a9c32](http://github.com/jquery/jquery-mobile/commit/d2a9c324969bb9f537c96b1177fc8252da3ea745))
* Demos: removed superfluous vendor prefixes (TICKETREF, [a6a4c55](http://github.com/jquery/jquery-mobile/commit/a6a4c559945679984708409b74892dfe9aae1ec5))
* Demos: replaced "docs" by "demos" in global nav utilities. (TICKETREF, [09e6f13](http://github.com/jquery/jquery-mobile/commit/09e6f13aaf76b34742d983df6ad9a8c5d4884cd8))
* Demos: small change in test page. (TICKETREF, [8db737e](http://github.com/jquery/jquery-mobile/commit/8db737eaa178da1269dc795f3c53ab029de3e54b))
* Demos: updated dialog examples links and markup. (TICKETREF, [9344ddf](http://github.com/jquery/jquery-mobile/commit/9344ddfaa6affdbf83ae8fadad31dbc29e81ede7))
* Demos: updated navbar demo page. (TICKETREF, [b4004ad](http://github.com/jquery/jquery-mobile/commit/b4004ad40f450eda1a1cf89e6370651f205b61c6))
* Demos: updates title of form element page and corrected markup for code blocks. (TICKETREF, [871b448](http://github.com/jquery/jquery-mobile/commit/871b44849d5e5d15da1efa594b529078f6bfe5fe))
* Demos: widget navmenu cleanup. (TICKETREF, [40f3459](http://github.com/jquery/jquery-mobile/commit/40f3459cbe51286cb301933f137ee8765ede4136))
* Deprecated option shadowicon. Add class ui-shadow-icon to a container or an button instead. (TICKETREF, [4e864be](http://github.com/jquery/jquery-mobile/commit/4e864beb25e7d389b2d990f39eecf84b441a88cd))
* Dialog Extension: remove call to _enhanced is now called by page (TICKETREF, [453ae41](http://github.com/jquery/jquery-mobile/commit/453ae41404452263dde850151a93f43e26fe9d6c))
* Dialog: Add "role=button" to the close button. (TICKETREF, [d8c597f](http://github.com/jquery/jquery-mobile/commit/d8c597fb1212626480230cea062256473d641584))
* Dialog: Added ui-corner-all for close button. (TICKETREF, [aec315a](http://github.com/jquery/jquery-mobile/commit/aec315a46b9f779a1b61343f50bbe5b8da708a9a))
* Dialog: Border styling of toolbars in dialogs. (TICKETREF, [9ef4b81](http://github.com/jquery/jquery-mobile/commit/9ef4b8115b44303c445ec38f3c051fe53ee58f37))
* Dialog: Call _super from _setOption for all options. (TICKETREF, [82b8b13](http://github.com/jquery/jquery-mobile/commit/82b8b132a46ee7b5804cf9354c6288d9717450f9))
* Dialog: Close button inherits theme from header. Removed icon shadow (consistent with other generated buttons; class ui-shadow-icon can be added to a container). (TICKETREF, [5ff704f](http://github.com/jquery/jquery-mobile/commit/5ff704f9be60132a9c8055a46ebc487c05b24378))
* Dialog: Dialog depends on page for setting the overlay theme. (TICKETREF, [be68437](http://github.com/jquery/jquery-mobile/commit/be684379ff32c8dfee52bc5e05d0b7ff5fc63f9d))
* Dialog: Do call buttonMarkup during _create. (TICKETREF, [9e847cd](http://github.com/jquery/jquery-mobile/commit/9e847cdb2bb3aa899ccce370e427237699f8ddc1))
* Dialog: Do not re-create the close button if its location or text changes. (TICKETREF, [7becf2d](http://github.com/jquery/jquery-mobile/commit/7becf2db3108e2c900a3fb4173295b4690f9aed5))
* Dialog: Fixed temporary close btn theme inheritance solution. (TICKETREF, [3a583ab](http://github.com/jquery/jquery-mobile/commit/3a583ab493384968c2f910e7b38b833834009d4f))
* Dialog: Get rid of buttonMarkup. (TICKETREF, [ebe2dc6](http://github.com/jquery/jquery-mobile/commit/ebe2dc6ba7bb3f3f8c53e0d1f8a289e399245959))
* Dialog: Make options work on-the-fly. (TICKETREF, [22384c9](http://github.com/jquery/jquery-mobile/commit/22384c9ba908409febaea569f46c0d3b2403ae65))
* Dialog: Remove optionDemultiplexer and move vclick/submit handler into the widget prototype. (TICKETREF, [c293304](http://github.com/jquery/jquery-mobile/commit/c2933042b2de893334d10059134416790091a63b))
* Dialog: Render un-closeable during pagebeforehide. Fixes #5956. ([#5956](http://github.com/jquery/jquery-mobile/issues/5956), [ae059a1](http://github.com/jquery/jquery-mobile/commit/ae059a1f9d930200a094c846f319b772c000bb0d))
* Dialog: Switched to em values. Removed rule for content padding because it's already in core CSS. (TICKETREF, [779cf94](http://github.com/jquery/jquery-mobile/commit/779cf947799f0bd3f24cd4970b0a191a7aee4714))
* Dialog: The dialog-page doesn't need the overlay theme class. We add that class to the container and hide the dialog-page background. (TICKETREF, [0d9857e](http://github.com/jquery/jquery-mobile/commit/0d9857e66556d3a5f690671f5e37877da59461f9))
* Docs: Copy editing. (TICKETREF, [d1c3245](http://github.com/jquery/jquery-mobile/commit/d1c324506abeb52c5170b80b950c0b9468c3c9cb))
* Duplicated swatch A as swatch C, D and E to prevent many broken examples in the demo center (temporary for testing purposes only). (TICKETREF, [86487dd](http://github.com/jquery/jquery-mobile/commit/86487dd23fd08319e4546cf6f95c5ad55f7c8711))
* Excluded external sources from linting (TICKETREF, [ec469d7](http://github.com/jquery/jquery-mobile/commit/ec469d75521af3543ce84684518f3c9b2e2c8630))
* Fieldcontain: Centralize all CSS for field containers. (TICKETREF, [013e4c3](http://github.com/jquery/jquery-mobile/commit/013e4c3e9fa61ce9e3eee8f3ce27a3f83c3a6dff))
* Fieldcontain: Float instead of inline-block so we can make this work without JS. (TICKETREF, [6212b80](http://github.com/jquery/jquery-mobile/commit/6212b80f120d93d762e970c46ebc9106320cd5e8))
* Fieldcontain: Global style. (TICKETREF, [acbf28b](http://github.com/jquery/jquery-mobile/commit/acbf28b1d4f029b6afebc3a2cbe386f3cd3b4a9a))
* Fieldcontain: Label margin bottom inside popups should match the default we set in core.css. (TICKETREF, [1229c97](http://github.com/jquery/jquery-mobile/commit/1229c978b3a89d2fc6f06c510d02790cdba7638b))
* Fieldcontain: Made sure button, textarea and flip toggle works. (TICKETREF, [07e5671](http://github.com/jquery/jquery-mobile/commit/07e56710f55970ede656eb9169bb2fe2f9ed9899))
* Fieldcontain: No class ui-body for fieldcontain. Deprecated data-role="fieldcontain". Add class ui-field-contain instead. (TICKETREF, [3650c85](http://github.com/jquery/jquery-mobile/commit/3650c85cecd63f81165969396951ef0c2db24fe6))
* Fieldcontain: No need to take form wrapper into account. (TICKETREF, [b804a94](http://github.com/jquery/jquery-mobile/commit/b804a94551d0f67023399e08cd10abc7ce837873))
* Fieldcontain: No separator when fieldcontainer is a list item. (TICKETREF, [48b0045](http://github.com/jquery/jquery-mobile/commit/48b00450b05d0b9445d38d215fbedc72b0e067b2))
* Fieldcontain: Removed CSS rule that was only needed for IE7 (no longer A grade). (TICKETREF, [0efb21a](http://github.com/jquery/jquery-mobile/commit/0efb21a1ba2845c9fc6aba6f4f0544e3f3210ef4))
* Fieldcontain: Removed display none for the separator. Unset the style instead. (TICKETREF, [14bba17](http://github.com/jquery/jquery-mobile/commit/14bba179904763ed062c2b90abd425e82bab17b7))
* Fieldcontain: Unset separator for list item field containers and last child. (TICKETREF, [2160238](http://github.com/jquery/jquery-mobile/commit/2160238e1dd3e6f86ff463faf2f65744767dc4a5))
* Filterable backcompat: Add placeholder during textinput generation. (TICKETREF, [8e24a90](http://github.com/jquery/jquery-mobile/commit/8e24a90b304329de152d8abd12c57ddc0dd46715))
* Filterable backcompat: Adding option "filterTheme". (TICKETREF, [0273f90](http://github.com/jquery/jquery-mobile/commit/0273f9022540d25de4325d1aa9a21fa16801f494))
* Filterable backcompat: Avoid setting placeholder twice when generating textinput. (TICKETREF, [e0088c5](http://github.com/jquery/jquery-mobile/commit/e0088c58bc38f5a80c6511d2e040265d9fa5f9aa))
* Filterable backcompat: Chain up during _destroy(). (TICKETREF, [bf780d1](http://github.com/jquery/jquery-mobile/commit/bf780d1eaff3173c8343fc871066be32ddf30efa))
* Filterable backcompat: Do not call _setOptions during _create. (TICKETREF, [11f4cd9](http://github.com/jquery/jquery-mobile/commit/11f4cd955681f538f14e98400295d8b9c63757ca))
* Filterable backcompat: Moving _create() method to the top. (TICKETREF, [6c44363](http://github.com/jquery/jquery-mobile/commit/6c44363eecfd56787d953963142cdbe4255244c1))
* Filterable backcompat: Prevent default on generated form submit and blur input. Fixes #6226. ([#6226](http://github.com/jquery/jquery-mobile/issues/6226), [46817d1](http://github.com/jquery/jquery-mobile/commit/46817d19537233484348f7437e61b8cf85f6f377))
* Filterable: Add extension "backcompat" to handle synchronization between widget options and textinput options. (TICKETREF, [30d42e2](http://github.com/jquery/jquery-mobile/commit/30d42e2eda189443d1d56438c6eb278a8821a151))
* Filterable: Allow class ui-filterable on both form wrapper and listview for convenience. (TICKETREF, [50799db](http://github.com/jquery/jquery-mobile/commit/50799db2c7c48826c9738b69a64daac12c85ecd0))
* Filterable: Backcompat: If widget and widget refresh() method is found, then call it after filtering. (TICKETREF, [abacee9](http://github.com/jquery/jquery-mobile/commit/abacee9020e4fa428e8a9b20a90988573bad5d48))
* Filterable: Backcompat: Move initial widget search to the first _filterItems() call. (TICKETREF, [aa6810c](http://github.com/jquery/jquery-mobile/commit/aa6810c0fe9552042da6c967868ceb90fd143c3b))
* Filterable: Border styling of listview with filter inside collapsible. (TICKETREF, [594eecc](http://github.com/jquery/jquery-mobile/commit/594eecca163f0fcbdf1f04c899adf42f7646896b))
* Filterable: Call _super() to set option values before calling refresh(), and add _destroy(). (TICKETREF, [03fb530](http://github.com/jquery/jquery-mobile/commit/03fb5305d4b3e95bcba8bad0c1049321d5c8490c))
* Filterable: Changed the default of option hidedividers to true. Fixes #6261. ([#6261](http://github.com/jquery/jquery-mobile/issues/6261), [cd4af5d](http://github.com/jquery/jquery-mobile/commit/cd4af5d3f18a276003b47a7be8602b3514cfb191))
* Filterable: Changing the base name for CSS classes from "ui-filter" to "ui-filterable". (TICKETREF, [bb0c1cb](http://github.com/jquery/jquery-mobile/commit/bb0c1cb1256cc80d15c879d17ef6b1e7a1110141))
* Filterable: Do not call _setOptions during _create. (TICKETREF, [741c066](http://github.com/jquery/jquery-mobile/commit/741c06670002d695d243b8cbc30a914c9200ea42))
* Filterable: Do not generate ids. (TICKETREF, [bc12372](http://github.com/jquery/jquery-mobile/commit/bc12372d7ab6789074a4e4b5d55790291f122ceb))
* Filterable: Factor out decision as to whether the search input is internal into a widget-level function. (TICKETREF, [f4e50cc](http://github.com/jquery/jquery-mobile/commit/f4e50cc4c9dc96a254ceb9ccf3af4cd716ed510f))
* Filterable: Fall back to this.element.children() if the fancy selector returns empty. (TICKETREF, [4558480](http://github.com/jquery/jquery-mobile/commit/45584808f1aa8d41b4f9f0990675c70f5b7537e1))
* Filterable: Increased specificity to make margin override work regardless CSS file order. (TICKETREF, [9dd3d0c](http://github.com/jquery/jquery-mobile/commit/9dd3d0c11c517dc5fb1e6bf6aa711b4f84d26f53))
* Filterable: Input generation becomes deprecated, calling refresh on recognized children becomes non-deprecated, and refiltering takes into account updated option values. (TICKETREF, [6a70acb](http://github.com/jquery/jquery-mobile/commit/6a70acb45025b61b2154b5c54230f1d734bf73fa))
* Filterable: Input styling. Fixes #6325. ([#6325](http://github.com/jquery/jquery-mobile/issues/6325), [4535f71](http://github.com/jquery/jquery-mobile/commit/4535f71518b4d82eb4fd760409114a19561b12b2))
* Filterable: Linter caught me forgettting to yank unused variable. (TICKETREF, [5f7462f](http://github.com/jquery/jquery-mobile/commit/5f7462ff257fbee22d2a31e1439df8e36614968e))
* Filterable: Make sure placeholder override works. (TICKETREF, [6e83759](http://github.com/jquery/jquery-mobile/commit/6e8375904ece75cd719eff3bed85e9498b6cec13))
* Filterable: Margin settings for filterable search input inside collapsible. (TICKETREF, [a9d54fe](http://github.com/jquery/jquery-mobile/commit/a9d54fe2cba90185874c0c73ae33f8005cb54975))
* Filterable: Moving _create() method to the top. (TICKETREF, [276c960](http://github.com/jquery/jquery-mobile/commit/276c960c8820a7931253c290907e035200073bb0))
* Filterable: Moving assumption about listview dividers into backcompat. (TICKETREF, [ce219c2](http://github.com/jquery/jquery-mobile/commit/ce219c253ca3cde67914330f3e15b1ddcc4962b2))
* Filterable: Moving handling of option "filterPlaceholder" to backcompat. (TICKETREF, [9627508](http://github.com/jquery/jquery-mobile/commit/96275085d12c7c2f84d012e122878229b31617d9))
* Filterable: Re-working widget so textinput can be assigned if needed, while maintaining the default of instantiating a search input. (TICKETREF, [db2bbf5](http://github.com/jquery/jquery-mobile/commit/db2bbf5385906f0eb4c66d3c2346ff86b0172400))
* Filterable: Rename option "inputSelector" to "input" and adding option "children" to store the selector that identifies the children which should be filtered. (TICKETREF, [e92e66a](http://github.com/jquery/jquery-mobile/commit/e92e66a8bb803d7aeb19ff730fcd26625820375c))
* Filterable: Set the ID of the generated input as this.element.attr( "id" ) + "-filterable" if this.element has an ID set or "ui-filterable-" + this.uuid otherwise. (TICKETREF, [758edee](http://github.com/jquery/jquery-mobile/commit/758edeec5d2b9972e88ad4944c32f55e4e9f1dd8))
* Filterable: Simplify filtering, and remove some special cases. (TICKETREF, [620d3e7](http://github.com/jquery/jquery-mobile/commit/620d3e7d869351e31cf7e1d162cbb5f99dfffc34))
* Filterable: The widget need not be passed into the filter function. (TICKETREF, [6515d18](http://github.com/jquery/jquery-mobile/commit/6515d18da15784ec0c13d538b49081e9ed626f2b))
* Filterable: Whitespace fixes and removing timer from options. (TICKETREF, [0c8c4f1](http://github.com/jquery/jquery-mobile/commit/0c8c4f1d950adacde37009299583e58f4b31d43f))
* Filterable: Wrap generated input into a form. (TICKETREF, [903ad43](http://github.com/jquery/jquery-mobile/commit/903ad4385189802e5b3979ef400937e9246f5f58))
* Filterable: add support for filtering select with optgroup (TICKETREF, [4e69e62](http://github.com/jquery/jquery-mobile/commit/4e69e627c5fb2c5ef6ae955cfdff0a5279385a10))
* Filterable: the "children" option may be a function which returns a jQuery object. (TICKETREF, [1103876](http://github.com/jquery/jquery-mobile/commit/1103876ba3e64a5f8087540eabdcb27d9dc2e5c5))
* Filtertext: CSS: Make sure items controlled by the filter that are supposed to be hidden are hidden. (TICKETREF, [61aceca](http://github.com/jquery/jquery-mobile/commit/61acecaded53ffd1453de3c1825cea9276ef9026))
* Filtertext: Renaming to "filterable". (TICKETREF, [11862a9](http://github.com/jquery/jquery-mobile/commit/11862a95dadc0adc773d22c62c5a05133859061e))
* First pass at toolbar widget (TICKETREF, [7abc720](http://github.com/jquery/jquery-mobile/commit/7abc72027abc39148490e4ded50c5ca47d8ab232))
* First pass on using pseudo classes for button state style. (TICKETREF, [fb863df](http://github.com/jquery/jquery-mobile/commit/fb863dff2379e8fd4b930782a4efde5ec8fa039e))
* Fix 6250: declare classes inside eacFix 6250: declare classes inside eachh (TICKETREF, [75572f6](http://github.com/jquery/jquery-mobile/commit/75572f678f24f4bd6c304dfebdacc176fbe11b70))
* Fix 6320: Table/Coltoggle - fieldset in popup not getting enhanced (TICKETREF, [f2cbc99](http://github.com/jquery/jquery-mobile/commit/f2cbc998384f2ccf1ef23cfca00920d59e892156))
* Fix CORS link (TICKETREF, [bf2a5bf](http://github.com/jquery/jquery-mobile/commit/bf2a5bf326d6171ea43cbd8adb9e201bb4c5c19e))
* Fix button themeing in headers (TICKETREF, [9560017](http://github.com/jquery/jquery-mobile/commit/9560017aba1b68673635cd0cf1b40a96e5d8c326))
* Fix setting dialog options other than "closeBtn" (TICKETREF, [ce724db](http://github.com/jquery/jquery-mobile/commit/ce724dbaf54ebfb5f60d1c8b7601e4c63eb3847d))
* Fix typo in question-template.php (TICKETREF, [bb615e1](http://github.com/jquery/jquery-mobile/commit/bb615e1ddb59abbb71d04ef1aa353d83078a4848))
* Fixed a typo. (TICKETREF, [b29d385](http://github.com/jquery/jquery-mobile/commit/b29d385bee2632b15d5b1aeeed3d7ad766537c86))
* Fixed b swatch focus (TICKETREF, [74eff58](http://github.com/jquery/jquery-mobile/commit/74eff58713cbe25e2ee25e4f743db765e792f0d4))
* Fixed broken test after linting. isToggleSwitch is needed when initializing vars in _create. (TICKETREF, [be2f809](http://github.com/jquery/jquery-mobile/commit/be2f8094845eb55606a7559539d8a2f45b9e37ca))
* Fixed path to nav.html (TICKETREF, [aac46f1](http://github.com/jquery/jquery-mobile/commit/aac46f11d917f7e243acbff549b6396fb1d4fb23))
* Fixed path to package.json (TICKETREF, [d13a1b6](http://github.com/jquery/jquery-mobile/commit/d13a1b6509aacc931d5dce70d77ececf0bcd9cbb))
* Fixed sourceMap's path to unminified (TICKETREF, [30a0215](http://github.com/jquery/jquery-mobile/commit/30a02159b06dd9c3fba5e0d5cdef04bdecd2cd33))
* Fixed toolbar workarounds: coding standards. (TICKETREF, [41847f9](http://github.com/jquery/jquery-mobile/commit/41847f9595ab3983cf6eef96fbfbbcfd8ac5f03c))
* Fixed toolbar: Adjusted the page padding we set in the CSS to prevent jumping content. (TICKETREF, [c061f2c](http://github.com/jquery/jquery-mobile/commit/c061f2c3e257e99b8e0e6d41f1583b2d85757672))
* Fixed toolbar: changed hideDuringFocus logic. Fixes #4113 and an issue on Android native browser (see comments in the code). ([#4113](http://github.com/jquery/jquery-mobile/issues/4113), [4d6079c](http://github.com/jquery/jquery-mobile/commit/4d6079c1c4e32269bd469409de8f9a78d8044987))
* Fixed typo in readme (TICKETREF, [d64d029](http://github.com/jquery/jquery-mobile/commit/d64d029d9acbbf93683ca1be7aa034604ebc2043))
* Fixed typos in rangeslider.js comments (TICKETREF, [2a44f5c](http://github.com/jquery/jquery-mobile/commit/2a44f5ceb13f310960e727dbf6c9da19e91a9a31))
* Fixed uglify config (TICKETREF, [531569e](http://github.com/jquery/jquery-mobile/commit/531569e85f45e7afe18c8e6ec0c29a8debdd3cdd))
* Fixed version back to 1.4.0pre (TICKETREF, [cdbaf2a](http://github.com/jquery/jquery-mobile/commit/cdbaf2a48b5bc0fb327bc1b752f97e491d7d7b8e))
* Fixed version string generation to handle non-semver string (TICKETREF, [c464d0a](http://github.com/jquery/jquery-mobile/commit/c464d0a91853ca078fdaa4af76eeba0f0fd639b1))
* Fixed vertical alignment of icon-only buttons on font icons test page. (TICKETREF, [98f8450](http://github.com/jquery/jquery-mobile/commit/98f845017493629ae97449c378cee28235a1e1f6))
* FixedToolbars: Make sure fixed positions are not updated unless we are dealing with a fixed toolbar (TICKETREF, [68289b3](http://github.com/jquery/jquery-mobile/commit/68289b3c31d113f20b59994c25163c4cde9c45fc))
* FixedToolbars: remove alert accidently left in (TICKETREF, [9bb8660](http://github.com/jquery/jquery-mobile/commit/9bb8660de48e9f98c7be0cfa5b52d6fcecde27fd))
* Fixedtoolbar: Update amd dependencies (TICKETREF, [23cfeed](http://github.com/jquery/jquery-mobile/commit/23cfeed0f686e45d3e7bb37378b48112f8a9d9d0))
* Flip Switch: First pass at new widget (TICKETREF, [09ab251](http://github.com/jquery/jquery-mobile/commit/09ab25184e4f69fc8f476df2fd33d9be8d4388f9))
* Flip Switch: adjust margins for consistancy and fix off text (TICKETREF, [db2c9a5](http://github.com/jquery/jquery-mobile/commit/db2c9a5aadb21678a5c88eaa3e6384b79e9c9a11))
* Flipswitch: Add tests (TICKETREF, [1ae9476](http://github.com/jquery/jquery-mobile/commit/1ae94766be175b0dbbc09ee8c500e89144f28232))
* Flipswitch: Added missing closing tag. This is required according specs and fixes IE8 where the "On" button wasn't created. (TICKETREF, [247f6f4](http://github.com/jquery/jquery-mobile/commit/247f6f4266dfe75d3d592a83abf74a62c5ab2840))
* Flipswitch: CSS refactor. (TICKETREF, [0d28299](http://github.com/jquery/jquery-mobile/commit/0d28299d57f36b640fe602c264895b8c54981b64))
* Flipswitch: Call _super() in options to make sure option values are updated Fixes: #6271 - Changing flipswitch theme does not work as expected (1.4-alpha1) (TICKETREF, [16d9689](http://github.com/jquery/jquery-mobile/commit/16d9689b90fcd93ed00cdf426e9e68e88fa390b3))
* Flipswitch: Coding standards. (TICKETREF, [da87dd4](http://github.com/jquery/jquery-mobile/commit/da87dd426ea6dd32a2780847aa44eec185230f80))
* Flipswitch: Fix checking of inital selected state Fixes #6343 - Flipswitch using select: 'selected' attribute selects wrong option ([#6343](http://github.com/jquery/jquery-mobile/issues/6343), [836c0f2](http://github.com/jquery/jquery-mobile/commit/836c0f2c7541e2edfb0913efece229cedf1593ad))
* Flipswitch: Fix incorect css file name in pragmas (TICKETREF, [c3f426d](http://github.com/jquery/jquery-mobile/commit/c3f426d01ad04b1598e30275bd0106989400580a))
* Flipswitch: Fixes the width and height of a flip switch in a field container. (TICKETREF, [0bc9ba7](http://github.com/jquery/jquery-mobile/commit/0bc9ba71aaee64457c078439860b664da12b06f4))
* Flipswitch: Removed the ui-bar-inherit class so you can theme the flip switch. (TICKETREF, [8a57a80](http://github.com/jquery/jquery-mobile/commit/8a57a80fc175d07ee6816c4b4a56ffefa3f9e4fb))
* Flipswitch: Some CSS tweaks. (TICKETREF, [295adec](http://github.com/jquery/jquery-mobile/commit/295adecb8522f65064ed5eb51d4d049ace5336e3))
* Flipswitch: Speed up the animation. (TICKETREF, [c13d6c9](http://github.com/jquery/jquery-mobile/commit/c13d6c9df45b84a6df6e6aad16d30d5609011bc3))
* Flipswitch: Theming. (TICKETREF, [3d079f0](http://github.com/jquery/jquery-mobile/commit/3d079f051b3101eb8d527512fded8f8199e0d44a))
* Flipswitch: add examples for inital active state and handle second option selected (TICKETREF, [fa3c63f](http://github.com/jquery/jquery-mobile/commit/fa3c63fd6d32b8cc75d4b42d00e9158c816b6b9c))
* Flipswitch: add mini and disabled options (TICKETREF, [978e6d2](http://github.com/jquery/jquery-mobile/commit/978e6d29b673171d103c28109aeeefd6ae25584e))
* Flipswitch: add several methods and switch to wrap native element (TICKETREF, [8867275](http://github.com/jquery/jquery-mobile/commit/8867275b534d09fdf7aa0afa0d571e474b7613e5))
* Flipswitch: remove mobile base widget (TICKETREF, [7b02a73](http://github.com/jquery/jquery-mobile/commit/7b02a7366127cc35b896dd169c95e1d842382114))
* Flipswitch: update demos to match implementation and fix mismatched text Fixes #6343 - Flipswitch using select: 'selected' attribute selects wrong option ([#6343](http://github.com/jquery/jquery-mobile/issues/6343), [a270eb5](http://github.com/jquery/jquery-mobile/commit/a270eb57665e234bc4717a68019d16cc728aa810))
* Flipswitch: update methods add set options and enhanced option (TICKETREF, [9cf40ef](http://github.com/jquery/jquery-mobile/commit/9cf40ef7f2e4f0cbb1c2a2476e694cea68cf8dd0))
* Following move of RequireJS plugins we now need to use the requirejs.config.js (TICKETREF, [ccfa125](http://github.com/jquery/jquery-mobile/commit/ccfa1256f3bb525523ffa91b526f4748053f7b54))
* Forgot to rename button.css in structure.css file. (TICKETREF, [c8d0fd4](http://github.com/jquery/jquery-mobile/commit/c8d0fd4567e7ce7509240b3de8ac0b65b69553c8))
* Forgot to update a var in listview. (TICKETREF, [be3b443](http://github.com/jquery/jquery-mobile/commit/be3b4432974817db4ab1459d6b45a58f83d3582b))
* Form widgets: Add reset handling via $.extend, not $.widget to avoid additional subclass depth (TICKETREF, [871a4f8](http://github.com/jquery/jquery-mobile/commit/871a4f868dffc5cb17f654bf75f14607accd5c92))
* Forms: hide the native clear button on IE 10 when JQM clear button is visible on text inputs. Fixes #5756 - Textinput in IE10 has a default clear icon ([#5756](http://github.com/jquery/jquery-mobile/issues/5756), [4782044](http://github.com/jquery/jquery-mobile/commit/4782044847a6926fa7b1288f6cf18a0d6b0df541))
* Functional tests: Button markup: Remove reference to jqm-docs.css. (TICKETREF, [ab07a96](http://github.com/jquery/jquery-mobile/commit/ab07a96495c63f4f6d249f5c4bbf7d9aa4bafbc3))
* Functional tests: Hashchange: Get rid of superfluous script/style (TICKETREF, [424a6c4](http://github.com/jquery/jquery-mobile/commit/424a6c482a57207640de4c3c57807f04dc2e4dc3))
* Get version from package.json instead of version.txt (TICKETREF, [23f0cc8](http://github.com/jquery/jquery-mobile/commit/23f0cc8d7688cefc80b5afb35f6b34177238f709))
* Got rid of depend! plugin, now uses RequireJS' shim config (TICKETREF, [49c5dda](http://github.com/jquery/jquery-mobile/commit/49c5dda032cbf60b029b9953cd0c9c6087bd065c))
* Got rid of version.txt, versioning now happens in package.json (TICKETREF, [97bc0d4](http://github.com/jquery/jquery-mobile/commit/97bc0d43bd14f15c16fe73dabfdcff28cb48e389))
* Grid: Added margin for selectmenu and checkboxradio in grids. Move rule that unsets button margin to make sure the override always works. (TICKETREF, [0d4544e](http://github.com/jquery/jquery-mobile/commit/0d4544e9404e71f64a437cfe88e05a24f0277685))
* Grid: Make it easy to use grids to layout unordered lists. (TICKETREF, [4b13983](http://github.com/jquery/jquery-mobile/commit/4b13983675fe2f256a8f5db4dc3803fed753f139))
* Grid: Make nested grids work. Fixes #6159. ([#6159](http://github.com/jquery/jquery-mobile/issues/6159), [ff18454](http://github.com/jquery/jquery-mobile/commit/ff18454514683f9e4e7207237589ab560b32a548))
* Grid: Minor change in selector. (TICKETREF, [0aa8ad7](http://github.com/jquery/jquery-mobile/commit/0aa8ad73ce80f0b8d58171e633f83115cc296917))
* Grid: Only make grids responsive when class ui-responsive is added to the grid container. (TICKETREF, [3fac24a](http://github.com/jquery/jquery-mobile/commit/3fac24a543704fb59b13eeec6a705d09dc8ba708))
* Grid: Removed "immediate child" from selector. (TICKETREF, [a18d163](http://github.com/jquery/jquery-mobile/commit/a18d163c29bc55fa65d09145e0e94dd713f706db))
* Grid: Reverted the uni selector - profiling CSS selector performance. (TICKETREF, [6b35f75](http://github.com/jquery/jquery-mobile/commit/6b35f7573056ab89bf27e18d54dab09e11c6057c))
* Grid: Updated grid CSS. Change generic selectors to specific ones to improve performance. (TICKETREF, [c4e4c95](http://github.com/jquery/jquery-mobile/commit/c4e4c95ba4153ccf4320a52ba0a3346771dd4bf3))
* Grids: Reduced CSS. (TICKETREF, [ba87993](http://github.com/jquery/jquery-mobile/commit/ba879934895ac5086822e0caa9bf7f3ff4b508d3))
* Grunt migration: Added devDependency on grunt-contrib-qunit (TICKETREF, [d24b45f](http://github.com/jquery/jquery-mobile/commit/d24b45f5bc7cfa2649d22c85c8dd9eac7b856c3a))
* Grunt migration: First draft of Gruntfile.js It can lint, build JS and execute some test through file:// (TICKETREF, [b8bda04](http://github.com/jquery/jquery-mobile/commit/b8bda04acd9b6313b12498c4496e5efeb39cbcc1))
* Grunt migration: Removed r.js (TICKETREF, [32fbf4f](http://github.com/jquery/jquery-mobile/commit/32fbf4f442790f516659ae82462bacfa6ee3293a))
* Grunt migration: Removed trailing comma (TICKETREF, [7d9abad](http://github.com/jquery/jquery-mobile/commit/7d9abad9df9b31093c898e28f7791813b544f9d5))
* Grunt migration: package.json (TICKETREF, [62b9487](http://github.com/jquery/jquery-mobile/commit/62b948721877c6ee6443067252721fa8ec8eabc8))
* Gruntfile.js: Allow specific html file to be given as an argument for --suites. (TICKETREF, [130968f](http://github.com/jquery/jquery-mobile/commit/130968fce38a46ff891ad21c8013b16de7ebb24e))
* Gruntfile.js: Heed the linter. (TICKETREF, [319115b](http://github.com/jquery/jquery-mobile/commit/319115b7d7c60f8ff4925624179630b72064d1db))
* Gruntfile.js: Instead of passing "name" to requirejs pass "include", which is an array of modules to include. (TICKETREF, [4e63369](http://github.com/jquery/jquery-mobile/commit/4e63369bbc25f9afaf6bc4f3b1c22b53722c4c4a))
* Gruntfile.js: Make sure paths are unique /after/ having stripped off the index.html. (TICKETREF, [0f21e34](http://github.com/jquery/jquery-mobile/commit/0f21e34b808cd48636f9254564e3908c3eb7f470))
* Gruntfile.js: Remove duplicate paths resulting from grunt.file.expand(). (TICKETREF, [b03f8cf](http://github.com/jquery/jquery-mobile/commit/b03f8cfd06cd8d82a5346e18fafb0ad5ee866056))
* Gruntfile.js: Tests: Filter out paths that do not exist. (TICKETREF, [00504f4](http://github.com/jquery/jquery-mobile/commit/00504f4d3b8a5a6541520d18de7c45d1f9ed2032))
* Gruntfile.js: Update filter for non-existing files to use OS-agnostic path-handling. (TICKETREF, [083ab98](http://github.com/jquery/jquery-mobile/commit/083ab98a40641fe0ace8d67d4702cedc8f9aa0d1))
* Helpers and page: Whitespace breaking the linter. (TICKETREF, [2d29b58](http://github.com/jquery/jquery-mobile/commit/2d29b58450c039d07c3c282dca5e2e56f8f29932))
* Hide and show the link to demos folder with JS to make sure no-JS browsers show the link. (TICKETREF, [d389a57](http://github.com/jquery/jquery-mobile/commit/d389a57c0b8fb44350f1623b43b062b11b8af857))
* Icons: Changed no-svg class to ui-nosvg (TICKETREF, [342eae1](http://github.com/jquery/jquery-mobile/commit/342eae15dcdf541def93419663ac359b6b7a5723))
* Icons: Increased icon background disc size. (TICKETREF, [e995df2](http://github.com/jquery/jquery-mobile/commit/e995df29dc1f9834340e60592ef78556c0c77e02))
* Icons: Removed icon CSS files from icons-png folder. (TICKETREF, [b30c4e5](http://github.com/jquery/jquery-mobile/commit/b30c4e533444fe4e70cc3802a4044d23dcb8250d))
* Icons: Updated icon preview page. (TICKETREF, [c02b295](http://github.com/jquery/jquery-mobile/commit/c02b2951a5fe52181b4d8479c7328f107c283775))
* Implementing the workaround for enable()/disable() and removing workaround from popup. (TICKETREF, [9e30114](http://github.com/jquery/jquery-mobile/commit/9e3011489de8558ef2e579edf46b63ab2e3fc0d8))
* Improved versioning logic (TICKETREF, [db8f028](http://github.com/jquery/jquery-mobile/commit/db8f0286da60e894af53dc5495950ffa925a5d79))
* Improvements to and consistency in accessible hiding content. TODO: look into #3851 and create a mixin when using SASS. (TICKETREF, [bf9c2d3](http://github.com/jquery/jquery-mobile/commit/bf9c2d307eec1bbd75156ecd846eb5b1e8f1b104))
* Included icons in jquery.mobile.css. (TICKETREF, [058ee7a](http://github.com/jquery/jquery-mobile/commit/058ee7add3a85a26e4880b7586de999e9a7bb179))
* Increased icon bg disc size and icon-only button size. Adjusted icon and icon-only button offsets. (TICKETREF, [c0e93b4](http://github.com/jquery/jquery-mobile/commit/c0e93b48bf0485fb385e2a3e3cf719129d597fcd))
* Init: Add comments to code about how url bar hiding works (TICKETREF, [2616059](http://github.com/jquery/jquery-mobile/commit/2616059e1a93a48ef7eee5c914d85f9eff612d3a))
* Init: add option to prevent hiding url bar (TICKETREF, [a2364f3](http://github.com/jquery/jquery-mobile/commit/a2364f39d4a0a27be6814b2545ca4c38a782bf51))
* Init: stop inital scroll when not hiding url (TICKETREF, [411d79e](http://github.com/jquery/jquery-mobile/commit/411d79e4631fed142252d00543f9c9c60532b046))
* Integration tests: Add toolbar test. (TICKETREF, [433d555](http://github.com/jquery/jquery-mobile/commit/433d5552cd5544e0f1c8d1b7da8f1bf891232437))
* Integration tests: Button markup: Tests are empty, removing. (TICKETREF, [669c8e9](http://github.com/jquery/jquery-mobile/commit/669c8e94cdc332f1cae8b8a74edc06e5a7bd14ad))
* Integration tests: Collapsible and collapsible set: check _destroy(). (TICKETREF, [dfbcdc5](http://github.com/jquery/jquery-mobile/commit/dfbcdc51ec9fd969da5a9e1ce8147d35a6496cc1))
* Integration tests: Collapsible: Make "Expand/Collapse" test reusable and apply it to pre-rendered collapsible. (TICKETREF, [ae1ed8e](http://github.com/jquery/jquery-mobile/commit/ae1ed8edd0d4c3cb82ccdb853189aface958b2f2))
* Integration tests: Collapsible: Twiddle with some options to make sure they get set/unset correctly. (TICKETREF, [571a938](http://github.com/jquery/jquery-mobile/commit/571a93892d8afeb4c88aaa7711747d52f3c209bb))
* Integration tests: Custom select: Removing test that checks whether placeholder is kept in sync across refresh() calls because it is also present in the unit tests, where it belongs. (TICKETREF, [6d5edb6](http://github.com/jquery/jquery-mobile/commit/6d5edb63192a3d86216e5ccb25651770bbf37adf))
* Integration tests: Dialog: Make sure the attribute "role=button" is set on the dialog close button. (TICKETREF, [acc0c44](http://github.com/jquery/jquery-mobile/commit/acc0c444eca257340142f169982bdcde373b9476))
* Integration tests: Filterable: Add destroy-tests. (TICKETREF, [290b88a](http://github.com/jquery/jquery-mobile/commit/290b88a47cf1f958abc0d2c49ca571b8f423a750))
* Integration tests: Filterable: Add input explicitly, because autogenerating it is deprecated. (TICKETREF, [33545d5](http://github.com/jquery/jquery-mobile/commit/33545d5c666c1d38019a85d7695436605da1ebd4))
* Integration tests: Filterable: Correctly retrieve generated textinput. (TICKETREF, [7a66c5a](http://github.com/jquery/jquery-mobile/commit/7a66c5ac88be1b6f2ecdd89be988b2886cf98b4b))
* Integration tests: Filterable: Do not test option filterPlaceholder because it is deprecated. (TICKETREF, [5affcc5](http://github.com/jquery/jquery-mobile/commit/5affcc5dad163ffd8bc25abc9212f016d6935c1d))
* Integration tests: Filterable: Place all test widgets on one page. (TICKETREF, [37bbc69](http://github.com/jquery/jquery-mobile/commit/37bbc699527a5c2d5472389b86f1687110c6abc6))
* Integration tests: Filterable: Place test widgets on one page instead of multiple pages. (TICKETREF, [cf23f0c](http://github.com/jquery/jquery-mobile/commit/cf23f0c5ceee4a1bcce731a863651ec862ba7797))
* Integration tests: Moving filter to filterable. (TICKETREF, [45aaaf2](http://github.com/jquery/jquery-mobile/commit/45aaaf2d0b5c6d30e45b744984580fdb0e885954))
* Integration tests: Moving sequence test for focus transfer from unit tests to integration tests. (TICKETREF, [b4d6c30](http://github.com/jquery/jquery-mobile/commit/b4d6c308601c8efa24fbba60033b476f493d0ee8))
* Integration tests: Popup: Add test to make sure a popup is closed upon becoming disabled, and to make sure that a disabled popup is not opened. (TICKETREF, [5653444](http://github.com/jquery/jquery-mobile/commit/5653444aa1b3d2b46f287d5557c905e6dba9886c))
* Integration tests: Popup: Make sure the popup emits exactly one "popupafterclose" event upon closing. (TICKETREF, [da41d09](http://github.com/jquery/jquery-mobile/commit/da41d0998069ea28fa17a214477d8ad7c8dd06c0))
* Integration tests: Popup: On the link it's data-rel, not data-role. (TICKETREF, [c2606e8](http://github.com/jquery/jquery-mobile/commit/c2606e85670d5c5d88471a74e4aa9ae8e7f0de0f))
* Integration tests: Popup: Parameterize popup-opens-and-closes test so other popups can be tested as well. (TICKETREF, [92d2757](http://github.com/jquery/jquery-mobile/commit/92d2757ae803a8a4d2db36010fb0746656f204d8))
* Integration tests: Popup: Test that pre-enhanced popup opens and closes correctly. (TICKETREF, [f4ba629](http://github.com/jquery/jquery-mobile/commit/f4ba629523f0be1804c8048e8c284985faa1873d))
* Integration tests: Remove leftover debugger statement. (TICKETREF, [a73598a](http://github.com/jquery/jquery-mobile/commit/a73598ab5e3f4f68250c160aaa055130362aad4c))
* Integration tests: Select: Remove duplicate test which is also present in and should stay in unit tests. (TICKETREF, [cb36348](http://github.com/jquery/jquery-mobile/commit/cb36348d291ef0ef01e0ccedfb16caeef2b185c7))
* Integration tests: Select: Remove test that makes sure that a select inside a popup is rendered as native, because it is duplicated from the unit tests. (TICKETREF, [8ec12f8](http://github.com/jquery/jquery-mobile/commit/8ec12f8728c577cffdb959b2ae87c6744dd5f121))
* Integration tests: Select: Removed duplicate test. (TICKETREF, [a329ec3](http://github.com/jquery/jquery-mobile/commit/a329ec3902dd19b377392dd37c8afb88298455bd))
* Integration tests: Select: Removing some synchronous tests which are duplicated in the unit tests anyway. (TICKETREF, [ceb65bc](http://github.com/jquery/jquery-mobile/commit/ceb65bc67cb06f2b532d9f8fe3cfdb5b53b32cdd))
* Integration tests: Select: Removing test for the presence of ui-btn-down-c. (TICKETREF, [d5566ba](http://github.com/jquery/jquery-mobile/commit/d5566ba393883feea60fcf022e2901f4dcf187bf))
* Integration tests: Select: Removing test titled "enabling and disabling" from integration tests, because it is also present in the unit tests and more properly resides there. (TICKETREF, [9bf601a](http://github.com/jquery/jquery-mobile/commit/9bf601a8be6c1a7bbf1d6e01efbba186dabd7e92))
* Integration tests: Select: Test for properly applied theme removed because it is duplicated in unit tests. (TICKETREF, [a6d3b9e](http://github.com/jquery/jquery-mobile/commit/a6d3b9e854a1d7ba0d7f14633e32a1dcd473aa05))
* Integration tests: Select: Theme inheritance test removed because it is also present in the unit tests and more properly resides there. (TICKETREF, [4b94e1b](http://github.com/jquery/jquery-mobile/commit/4b94e1b1da647471e0f7d8d7ee905a7d28eb2fda))
* Integration tests: Select: Updating test for correct button update. (TICKETREF, [2e8c2a4](http://github.com/jquery/jquery-mobile/commit/2e8c2a45249d65c6a2e83a6cc830b5111bbe2a11))
* Integration tests: Select: Whitespace fix. (TICKETREF, [f6d0fca](http://github.com/jquery/jquery-mobile/commit/f6d0fca43875cb5c9ec77c46f479d086dc92207e))
* Integration tests: Test option value inheritance for option "mini". (TICKETREF, [fc8f6ce](http://github.com/jquery/jquery-mobile/commit/fc8f6ceaaf033b2b5ac2e4b2c3a536cd8a89450e))
* Integration tests: Yank test that checks tolerances, because it fails in phantomjs. (TICKETREF, [2a14641](http://github.com/jquery/jquery-mobile/commit/2a1464150af45ff289bea3bebf0c82c7f667b832))
* Integration tests: collapsible: Add pre-rendered collapsible to markup. (TICKETREF, [47097ef](http://github.com/jquery/jquery-mobile/commit/47097ef9fba06e3a5a265329e522202ae7d64e26))
* KeepNative: Made keep native just a selector string on $.mobile and deprecate keepNativeSelector from page (TICKETREF, [40857b3](http://github.com/jquery/jquery-mobile/commit/40857b36f8364a69f8e8da905451c4ceba386f12))
* Links: Append popup accessibility attributes. Fixes #5898. ([#5898](http://github.com/jquery/jquery-mobile/issues/5898), [ab910d3](http://github.com/jquery/jquery-mobile/commit/ab910d3cc80766c58c6b7aad4d0308f1de42c332))
* Links: Correctly distinguishing between hrefs, ids, and selectors. (TICKETREF, [5134233](http://github.com/jquery/jquery-mobile/commit/51342330315c0f799e413d7e739a0863fd64961b))
* Links: ID refs without hashtag for aria-owns attribute of links to popups. Fixes #6117. ([#6117](http://github.com/jquery/jquery-mobile/issues/6117), [180a404](http://github.com/jquery/jquery-mobile/commit/180a4045cb692feeb2cc115956c7eefb5c802dc8))
* Lint: Heeding the new version. (TICKETREF, [0770aa7](http://github.com/jquery/jquery-mobile/commit/0770aa70a68c9f94b215030861986578dbbbefcf))
* Lint: fixing white space (TICKETREF, [ae3f4c7](http://github.com/jquery/jquery-mobile/commit/ae3f4c7b484a73f7437f4400d945b047d7a9d4eb))
* List: replaced 2 submit event binds with one for filter wrapper (TICKETREF, [af81d12](http://github.com/jquery/jquery-mobile/commit/af81d12d471c16846c32d622f9af6521eab47582))
* Listview filter: Check if var listview is defined. Fixes #5696 and #5643 ([#5696](http://github.com/jquery/jquery-mobile/issues/5696), [1e88b3b](http://github.com/jquery/jquery-mobile/commit/1e88b3bf4f1eb8cc70738654fcefcce1c2ed4740))
* Listview hidedividers: Heeding the linter. (TICKETREF, [eebbc28](http://github.com/jquery/jquery-mobile/commit/eebbc28c5c1e6f03c1f693bc95964938d120efa9))
* Listview: Add icon classes to button. (TICKETREF, [0ba1ee8](http://github.com/jquery/jquery-mobile/commit/0ba1ee83ef6c28cc9f65d71914ae532c729c1ef1))
* Listview: Add icon position class again. (TICKETREF, [cbb3ad4](http://github.com/jquery/jquery-mobile/commit/cbb3ad4956781f33b6cf4fd9a57e971c95c9e5ca))
* Listview: Added style for ordered list with formatted content. Fixes #1609. ([#1609](http://github.com/jquery/jquery-mobile/issues/1609), [1b57da9](http://github.com/jquery/jquery-mobile/commit/1b57da93338702524122998dcae891243c097c5b))
* Listview: Adding extension to hide dividers whose "children" are all hidden. (TICKETREF, [79ba989](http://github.com/jquery/jquery-mobile/commit/79ba989beb689d43c9ba3a3654654a614ef3c659))
* Listview: Adjusted count bubble size; matches with icon disc and they are round now on Android. (TICKETREF, [ac3001c](http://github.com/jquery/jquery-mobile/commit/ac3001c3b88d3afbbfb3db4ecb763953dda4e82f))
* Listview: Autodividers: Converting to extension. (TICKETREF, [dfcc6a5](http://github.com/jquery/jquery-mobile/commit/dfcc6a53df267f829cd6ce8aee3f8670c5a50c1e))
* Listview: Change of plan... bring back class ui-btn for listview buttons. (TICKETREF, [36a6442](http://github.com/jquery/jquery-mobile/commit/36a644282b854ed1d9417edaa5f4464902ce6de6))
* Listview: Check if list item is already enhanced to improve performance of refresh. (TICKETREF, [e07be5a](http://github.com/jquery/jquery-mobile/commit/e07be5ad8ceef4917351bb4bc8a5ac9330a5c27f))
* Listview: Check if split button icon has been specified with data- attr on the LI. (TICKETREF, [f0d71e3](http://github.com/jquery/jquery-mobile/commit/f0d71e34b415bdc8ab85d3f699622787473daac0))
* Listview: Correction in count bubble position em value. (TICKETREF, [dc78588](http://github.com/jquery/jquery-mobile/commit/dc78588d1ecc75af547b92da6fe383970040dc57))
* Listview: Correction in the code that sets the counter when there is a value attribute. (TICKETREF, [be2c475](http://github.com/jquery/jquery-mobile/commit/be2c4758213f7c199125a0fab2d72bcf626933e2))
* Listview: Correction split button count bubble position. (TICKETREF, [94c0bcc](http://github.com/jquery/jquery-mobile/commit/94c0bcc7ffc7699cca4a6258e19e461ecf503ac8))
* Listview: De-linting. (TICKETREF, [1071734](http://github.com/jquery/jquery-mobile/commit/1071734c1f417685752579fd042c63669551375d))
* Listview: Deprecated auto detection of thumbs/icons. Add class ui-li-has-thumb/icon to the LI. (TICKETREF, [ed89730](http://github.com/jquery/jquery-mobile/commit/ed89730f42ad83cad7e8006a1ecd33ef64738192))
* Listview: Deprecated option countTheme. (TICKETREF, [cd3b9d6](http://github.com/jquery/jquery-mobile/commit/cd3b9d6ef6298a84512d48ed64320ae234099d52))
* Listview: Don't add classes ui-li-heading/desc/thumb but use CSS type selectors. (TICKETREF, [4bc1ec5](http://github.com/jquery/jquery-mobile/commit/4bc1ec52e7c4a71e4863f0e2a4e5361b8df6516e))
* Listview: Don't add ui-li-static to LIs with buttons that are already enhanced. Changed the regex because it shouldn't match ui-li-has-thumb/icon. (TICKETREF, [86875b6](http://github.com/jquery/jquery-mobile/commit/86875b6b92c72588960305a4cd800db155809f3e))
* Listview: Filter: Convert to extension. (TICKETREF, [3f7a788](http://github.com/jquery/jquery-mobile/commit/3f7a78871db19cf3d2c7a61b088cfd52b7487e44))
* Listview: Fixed a specificity issue. (TICKETREF, [8c2dcc2](http://github.com/jquery/jquery-mobile/commit/8c2dcc258599fed1307aa23f4f5d4a22fc4956fa))
* Listview: Form buttons inside a static LI shouldn't get listview button styles. (TICKETREF, [edafe26](http://github.com/jquery/jquery-mobile/commit/edafe2642e068f908432eb3e54254e1c60941942))
* Listview: Improved icon and theme options logic. Prevent icon related classes being added when icon is set to false. (TICKETREF, [ed69a52](http://github.com/jquery/jquery-mobile/commit/ed69a52dd643e741f3d4f8c9430e741e3a20bb03))
* Listview: Increased text-indent for formatted text in ordered list a bit. (TICKETREF, [cc9fa8c](http://github.com/jquery/jquery-mobile/commit/cc9fa8cc1f51e7bcf2d4adaa9839fe14471ceb19))
* Listview: No icon position class. (TICKETREF, [203eefd](http://github.com/jquery/jquery-mobile/commit/203eefd79b45fa42b89b8b5c35fffdb75f65f520))
* Listview: No more jsCount, only use pseudo elements for list numbering. Take value attribute into account: fixes #5884. (TICKETREF, [6ddfca9](http://github.com/jquery/jquery-mobile/commit/6ddfca9c7b2e0fea25c5a31b4b0cb60fc84d9721))
* Listview: No more ui-li and ui-btn classes. (TICKETREF, [967fe31](http://github.com/jquery/jquery-mobile/commit/967fe318a6f6725477f81120747eeeeb4945f3b2))
* Listview: Ordered list styling. (TICKETREF, [1995eee](http://github.com/jquery/jquery-mobile/commit/1995eeea7e5e19a142678e2122bc3adb005c05be))
* Listview: Provide class ui-li-thumb to position elements other than img. Deprecate ui-li-has-icon. Fixes #6321. ([#6321](http://github.com/jquery/jquery-mobile/issues/6321), [0479daa](http://github.com/jquery/jquery-mobile/commit/0479daa0e3d358153a455d5448d395e67d9a1472))
* Listview: Reduced CSS for list buttons. Use global rules for padding. (TICKETREF, [c5d794a](http://github.com/jquery/jquery-mobile/commit/c5d794a9bc40a4049033e556b51558753cf972ed))
* Listview: Reduced counter-reset code. (TICKETREF, [975643f](http://github.com/jquery/jquery-mobile/commit/975643f3bc9a3eeca3b680366c8684a12af01e69))
* Listview: Reduced specificity of read-only list item selector. (TICKETREF, [96240dc](http://github.com/jquery/jquery-mobile/commit/96240dcbd71944a1c6b3002e5551bed62ae4248b))
* Listview: Remove ui-link class from listview buttons. (TICKETREF, [a0fc287](http://github.com/jquery/jquery-mobile/commit/a0fc287fb5378ef2c258eaea835bb0b7aaf94f7d))
* Listview: Removed code that was adding classes to ui-btn-inner. (TICKETREF, [92750e8](http://github.com/jquery/jquery-mobile/commit/92750e8bfd68c9b9c5b4966ddcc7cb74ff347bd1))
* Listview: Removed nested listview option headerTheme. (TICKETREF, [3fa62b5](http://github.com/jquery/jquery-mobile/commit/3fa62b53978858304fdc97c393d960b1b01e2aa3))
* Listview: Removed superfluous code. (TICKETREF, [74c0204](http://github.com/jquery/jquery-mobile/commit/74c0204b0db99cb9f3cefc98088bd58c906a9192))
* Listview: Removed ui-li-thumb from selector. We don't add that class anymore. (TICKETREF, [bd599a9](http://github.com/jquery/jquery-mobile/commit/bd599a9e41655543c89a5305856c902afe8cc33a))
* Listview: Removed unnecessary fallbacks. Split button icon option has a default and can't be set to false. (TICKETREF, [430096b](http://github.com/jquery/jquery-mobile/commit/430096bd9cbe4550fe6632f786938b88dcb42bcf))
* Listview: Replace jqmData with $.mobile.getAttribute (TICKETREF, [920f3a6](http://github.com/jquery/jquery-mobile/commit/920f3a6d30e744a0d72189395195da4496170416))
* Listview: Reverted the "add body theme class to container" solution. (TICKETREF, [e081a9a](http://github.com/jquery/jquery-mobile/commit/e081a9adcccb55bc696e4f51a89e4bab148e484d))
* Listview: Same margin-top for inset listview filter as inset listview without filter. (TICKETREF, [9d3328d](http://github.com/jquery/jquery-mobile/commit/9d3328d9b934f21ca0f49bb421c3ab727060f402))
* Listview: Same spacing at all sides for inset listview inside a collapsible. (TICKETREF, [9e789a2](http://github.com/jquery/jquery-mobile/commit/9e789a267daa515a0b4079ba22df3809e278022b))
* Listview: Set theme for whole listview with one class. (TICKETREF, [de40f72](http://github.com/jquery/jquery-mobile/commit/de40f7258e0948068311ffd91cf8657c10cfd3fe))
* Listview: Simplified markup, no more buttonMarkup. (TICKETREF, [78cb933](http://github.com/jquery/jquery-mobile/commit/78cb93362fe7143ad3cc5665d0ac185fd45e5ae1))
* Listview: Simplified the split button; don't append another button. (TICKETREF, [eabb553](http://github.com/jquery/jquery-mobile/commit/eabb5532de4b90582975ef89ec05d0948304303f))
* Listview: Some small changes because we use class ui-li anymore but still add class ui-btn. (TICKETREF, [9af0e9c](http://github.com/jquery/jquery-mobile/commit/9af0e9c3867806894957220594482eb0cdf056e1))
* Listview: Split button icon needs icon position class. (TICKETREF, [c01f3ad](http://github.com/jquery/jquery-mobile/commit/c01f3adbdedb5e955f55ad061eb65a65d7d4020b))
* Listview: Split button performance improvements. (TICKETREF, [537a4da](http://github.com/jquery/jquery-mobile/commit/537a4da4326708348a86c0502504b436be5da6d7))
* Listview: Split button theme inheritance. (TICKETREF, [e6c5ac5](http://github.com/jquery/jquery-mobile/commit/e6c5ac5b4b2352f82d07ae54437076bce6827982))
* Listview: Split buttons without buttonMarkup. (TICKETREF, [1c7117c](http://github.com/jquery/jquery-mobile/commit/1c7117c21c662a3109708a0df71483540b8235a6))
* Listview: Style count bubble as body instead of button. (TICKETREF, [056b94c](http://github.com/jquery/jquery-mobile/commit/056b94c063f43483726e51c42f65e79396b357ea))
* Listview: Use body class for read-only listviews. (TICKETREF, [f5d71f6](http://github.com/jquery/jquery-mobile/commit/f5d71f6321055f22de5f00d3f9d15f4d18fc5696))
* Listview: Use em value for responsive ui-li-aside; same breakpoint as fieldcontain. (TICKETREF, [b719c99](http://github.com/jquery/jquery-mobile/commit/b719c9907829cbea69e03fba78781016c88de406))
* Listview: We don't need class ui-li-has-arrow anymore. (TICKETREF, [1502c70](http://github.com/jquery/jquery-mobile/commit/1502c70fed469b196db4cdfff80dc386f138ed30))
* Listview: body instead of new ui-fill-x theme class for static list items. (TICKETREF, [e778db8](http://github.com/jquery/jquery-mobile/commit/e778db8cdd538234871794376a52b4237461460a))
* Listview: em values. (TICKETREF, [ad51f72](http://github.com/jquery/jquery-mobile/commit/ad51f72be2b541f72591015ea2febcf8de9346bd))
* Listview: headings and paragraphs style tweaks. (TICKETREF, [3868591](http://github.com/jquery/jquery-mobile/commit/386859121efb67bf4a5f6b012b96db78a851203a))
* Listview: performance improvements. (TICKETREF, [7243808](http://github.com/jquery/jquery-mobile/commit/7243808b1e2aa02b8946573e58c7734efdd602f9))
* Listview: position ui-li-aside absolute. (TICKETREF, [03db354](http://github.com/jquery/jquery-mobile/commit/03db3547a31daba83723481f094c4b623b93b276))
* Listview: remove all js dependancy on page (TICKETREF, [197bac3](http://github.com/jquery/jquery-mobile/commit/197bac3aa356a1a1678d955f756ed2d58571b89b))
* Listview: removed superfluous function from addClass. (TICKETREF, [ecf298b](http://github.com/jquery/jquery-mobile/commit/ecf298bab38c02e9e7853c71260d485204be91f9))
* Listview: removed superfluous z-index for split button. (TICKETREF, [e115ec1](http://github.com/jquery/jquery-mobile/commit/e115ec1cda02c1c91fa7c6cfd7385acb0e5d5bff))
* Listview: theme inheritance for list dividers. (TICKETREF, [ee3288d](http://github.com/jquery/jquery-mobile/commit/ee3288d194e599bcb9b882bab576d93d39c05e64))
* Listview: theme inheritance. (TICKETREF, [0e87097](http://github.com/jquery/jquery-mobile/commit/0e8709762da56b75da9681591b16351507ec9f6a))
* Loader: Removed ui-icon class. Changed px to em values. (TICKETREF, [6da83d4](http://github.com/jquery/jquery-mobile/commit/6da83d40bae2c98f974bd78a046508b6080c0099))
* Loadpage: Fixes calling $.mobile.loadpage fails when a second argument is not passed (TICKETREF, [f09ed24](http://github.com/jquery/jquery-mobile/commit/f09ed241558528a47f9203cc8331c05f9f562ba4))
* Made transparent native input and select element inherit border-radius. (TICKETREF, [bbd80cd](http://github.com/jquery/jquery-mobile/commit/bbd80cdddaa0d74f705ab258442b2d6439c433bc))
* Merge branch 'basetag' (TICKETREF, [4b2a785](http://github.com/jquery/jquery-mobile/commit/4b2a785f59e7a52434d1ef9198258b785871f08b))
* Merge branch 'collapsible-widget-review' (TICKETREF, [6517422](http://github.com/jquery/jquery-mobile/commit/651742254bab08cbe89bbbc2da1912d53e1380da))
* Merge branch 'controlgroup' of github.com:stforek/jquery-mobile into pr-5651 (TICKETREF, [9a3c504](http://github.com/jquery/jquery-mobile/commit/9a3c5049139207633b456dd549d9c9ce50701038))
* Merge branch 'controlgroup-widget-review' (TICKETREF, [6a558ff](http://github.com/jquery/jquery-mobile/commit/6a558ffe98c86e405071b1b19c28c9befea23727))
* Merge branch 'enhancement-order' into lazy-widgets-with-registry (TICKETREF, [d80b923](http://github.com/jquery/jquery-mobile/commit/d80b923f7836805bec9c1c31de9dbb232b2aa88c))
* Merge branch 'ext-panels' of https://github.com/jquery/jquery-mobile into ext-panels (TICKETREF, [45a122c](http://github.com/jquery/jquery-mobile/commit/45a122cab456003db38ed7a7e099dd80ce231f7f))
* Merge branch 'filter-widget-review' (TICKETREF, [b2a73d0](http://github.com/jquery/jquery-mobile/commit/b2a73d02d5d202704e4a8c08ee6ddd49281dec58))
* Merge branch 'filter_widget' of github.com:frequent/jquery-mobile into filter-widget-review (TICKETREF, [081c44e](http://github.com/jquery/jquery-mobile/commit/081c44ea95029f0db03d5d5c35a61cd2a2cba61d))
* Merge branch 'fix-5710' (TICKETREF, [72906c8](http://github.com/jquery/jquery-mobile/commit/72906c8d6ab3168d070a43574b51235311c0e15b))
* Merge branch 'fix-dialog-setOption' of github.com:jdknezek/jquery-mobile into pr-5667 (TICKETREF, [f4442e5](http://github.com/jquery/jquery-mobile/commit/f4442e573db7e7e86363050923e3bf7a3be5b269))
* Merge branch 'flipswitch' (TICKETREF, [df60622](http://github.com/jquery/jquery-mobile/commit/df6062213c420148a0896a19c729f0ebda6637aa))
* Merge branch 'grunt-0.4' (TICKETREF, [20d4972](http://github.com/jquery/jquery-mobile/commit/20d4972d5d69e2b04676f24a9d4ea9e9b75e96d3))
* Merge branch 'issue-6258' (TICKETREF, [36bb67f](http://github.com/jquery/jquery-mobile/commit/36bb67f5e50b77927d18c0984e5ef7b8bc474f90))
* Merge branch 'master' into collapsible-widget-review (TICKETREF, [2efcb7a](http://github.com/jquery/jquery-mobile/commit/2efcb7aa4742de988513700f534d7676b9f93dec))
* Merge branch 'master' into collapsible-widget-review (TICKETREF, [93761a7](http://github.com/jquery/jquery-mobile/commit/93761a71d9aaa9914a27a18443665873e1e13dc3))
* Merge branch 'master' into collapsible-widget-review (TICKETREF, [d96fb7d](http://github.com/jquery/jquery-mobile/commit/d96fb7d75cceb9876872ca3eeb8313853f602049))
* Merge branch 'master' into collapsible-widget-review (TICKETREF, [f0e035e](http://github.com/jquery/jquery-mobile/commit/f0e035e5f693aab05276022d0b20a0f4bc8ccc6a))
* Merge branch 'master' into controlgroup-widget-review (TICKETREF, [b4a2a31](http://github.com/jquery/jquery-mobile/commit/b4a2a31d3a96be6f2b39f8ab1f4abc6dd68be5ae))
* Merge branch 'master' into controlgroup-widget-review (TICKETREF, [ec23a71](http://github.com/jquery/jquery-mobile/commit/ec23a71bb8d52ad34d8f78a807cfa603b4b3246b))
* Merge branch 'master' into enhancement-order (TICKETREF, [3aabb8a](http://github.com/jquery/jquery-mobile/commit/3aabb8a7e558a24b8ea29dff152987d522c5fd35))
* Merge branch 'master' into enhancement-order (TICKETREF, [5038eca](http://github.com/jquery/jquery-mobile/commit/5038eca10f6098f94cca17bd78ee0f343ade4e9d))
* Merge branch 'master' into enhancement-order (TICKETREF, [cef1efa](http://github.com/jquery/jquery-mobile/commit/cef1efae707c42991696fc05e8bb47a365048f9e))
* Merge branch 'master' into ext-panels (TICKETREF, [6977889](http://github.com/jquery/jquery-mobile/commit/6977889b7da13df0f76bafa35655bd32f2ce71e7))
* Merge branch 'master' into ext-panels (TICKETREF, [83aee53](http://github.com/jquery/jquery-mobile/commit/83aee5301df697a7020db8fa60c903a83eb5da46))
* Merge branch 'master' into ext-panels (TICKETREF, [e1d40a0](http://github.com/jquery/jquery-mobile/commit/e1d40a0765de46581e3797d49096936241264d83))
* Merge branch 'master' into filter-widget-review (TICKETREF, [1295756](http://github.com/jquery/jquery-mobile/commit/1295756315a973715b2c9f9c602e0b9656064a37))
* Merge branch 'master' into filter-widget-review (TICKETREF, [1490d9d](http://github.com/jquery/jquery-mobile/commit/1490d9d18bc35638771c8a751059998b373498ea))
* Merge branch 'master' into filter-widget-review (TICKETREF, [745eaae](http://github.com/jquery/jquery-mobile/commit/745eaaef44c1856082caba3f520bb88bf1bf7fe1))
* Merge branch 'master' into filter-widget-review (TICKETREF, [eb637d4](http://github.com/jquery/jquery-mobile/commit/eb637d443425067e423ae58d9f6d462dbfed6745))
* Merge branch 'master' into flipswitch (TICKETREF, [915edb5](http://github.com/jquery/jquery-mobile/commit/915edb53f71e9a0e3779fb0d445ba22104702e67))
* Merge branch 'master' into grunt-0.4 (TICKETREF, [5cb59a6](http://github.com/jquery/jquery-mobile/commit/5cb59a6f44ab81e85b65d0791cf262146c6a5fe3))
* Merge branch 'master' into lazy-widgets-via-accessors (TICKETREF, [e033953](http://github.com/jquery/jquery-mobile/commit/e03395394acaebb4b9c41a3edff1d05a44dd359e))
* Merge branch 'master' into lazy-widgets-with-registry (TICKETREF, [5c52522](http://github.com/jquery/jquery-mobile/commit/5c5252222ad0246d86ed439050918203dddb3146))
* Merge branch 'master' into next (TICKETREF, [2829abe](http://github.com/jquery/jquery-mobile/commit/2829abe378e9884fae345d3e343f3041c8bd64c3))
* Merge branch 'master' into next (TICKETREF, [35d2d10](http://github.com/jquery/jquery-mobile/commit/35d2d1039f746c219c713758fef91b877645d9fa))
* Merge branch 'master' into next (TICKETREF, [4d41a47](http://github.com/jquery/jquery-mobile/commit/4d41a47ef32036eca630c1a07fb4dcbf13a24c39))
* Merge branch 'master' into next (TICKETREF, [6b50be7](http://github.com/jquery/jquery-mobile/commit/6b50be71ebca8b779d43dce6fd130eb75edfa0e0))
* Merge branch 'master' into next (TICKETREF, [88d124a](http://github.com/jquery/jquery-mobile/commit/88d124ace7c351f982cea812c92ad52604fc53d9))
* Merge branch 'master' into next (TICKETREF, [aabdc93](http://github.com/jquery/jquery-mobile/commit/aabdc93afc4fdb66d88033551a18fa24537f1619))
* Merge branch 'master' into next (TICKETREF, [ae39280](http://github.com/jquery/jquery-mobile/commit/ae39280c1c9da2dc346d6ad5b295c3de852df038))
* Merge branch 'master' into next (TICKETREF, [b5f181a](http://github.com/jquery/jquery-mobile/commit/b5f181af1057e82b773ad0f949a617e2e458930a))
* Merge branch 'master' into next (TICKETREF, [c570210](http://github.com/jquery/jquery-mobile/commit/c570210b5ce778865b323083cb19af15d475c3ac))
* Merge branch 'master' into next (TICKETREF, [cfa8e6d](http://github.com/jquery/jquery-mobile/commit/cfa8e6df1fdb9a886b73eb061e5fc4e3378fa27e))
* Merge branch 'master' into next (TICKETREF, [ea76c10](http://github.com/jquery/jquery-mobile/commit/ea76c107a2a630da2e635c7485df3437c7825875))
* Merge branch 'master' into popup-widget-review (TICKETREF, [8aaf94e](http://github.com/jquery/jquery-mobile/commit/8aaf94eb67579e26e65cd4349bd0e5eb5b96dfbc))
* Merge branch 'master' into table-widget-review (TICKETREF, [0849444](http://github.com/jquery/jquery-mobile/commit/08494441000380808ca3bf6a0892311f2d5dbb2c))
* Merge branch 'master' of github.com:jquery/jquery-mobile (TICKETREF, [e900d62](http://github.com/jquery/jquery-mobile/commit/e900d628c303f9fdbf2be545cf5a3fcf41623754))
* Merge branch 'master' of github.com:stforek/jquery-mobile into pr-5509 (TICKETREF, [732a14b](http://github.com/jquery/jquery-mobile/commit/732a14b5573c2ac4b9427254dd74aa40d3545d41))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile (TICKETREF, [2cd340b](http://github.com/jquery/jquery-mobile/commit/2cd340bd9acc4d12a1cc3c2c20661beaa8cbcb5f))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile (TICKETREF, [6be7050](http://github.com/jquery/jquery-mobile/commit/6be70509dce060c4b5ec2e9b73a3ff8e20d04cb5))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into content-widget (TICKETREF, [41b7530](http://github.com/jquery/jquery-mobile/commit/41b7530c6153664af11ea36b69d312708d74333e))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into ext-panels (TICKETREF, [844ad71](http://github.com/jquery/jquery-mobile/commit/844ad71ed90490ef236b78c52e8d23879e71ca3f))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into mobile-base (TICKETREF, [68daf85](http://github.com/jquery/jquery-mobile/commit/68daf85e89a47bcf7e983f1f35cf8dd15448da43))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into mobile-base (TICKETREF, [9ce4295](http://github.com/jquery/jquery-mobile/commit/9ce429590f4aa07a5ec7781d076407d7a8731001))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into page-sections (TICKETREF, [cac7376](http://github.com/jquery/jquery-mobile/commit/cac73767e888f5f41ae80e9be08282f390396560))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into page-sections (TICKETREF, [fdf8f80](http://github.com/jquery/jquery-mobile/commit/fdf8f80b452bf3ad73f80d9c3822de7d72202221))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into tabs (TICKETREF, [f40d341](http://github.com/jquery/jquery-mobile/commit/f40d3413de33eafe7194182f6b490aa38806674b))
* Merge branch 'master' of https://github.com/jquery/jquery-mobile into touch-remove (TICKETREF, [70877cf](http://github.com/jquery/jquery-mobile/commit/70877cfa488fc7ea9f6ea6dc402ceda65b8e09d5))
* Merge branch 'next' (TICKETREF, [4973827](http://github.com/jquery/jquery-mobile/commit/4973827a40ecc64a7133537e687bce81041df265))
* Merge branch 'page-sections' of https://github.com/jquery/jquery-mobile into page-sections (TICKETREF, [75f99c6](http://github.com/jquery/jquery-mobile/commit/75f99c6fe039117258e081877f3e7fe5bd1835ba))
* Merge branch 'slider_left_mousedown' of github.com:stforek/jquery-mobile into pr-5568 (TICKETREF, [82b247c](http://github.com/jquery/jquery-mobile/commit/82b247c29199f41e93b62855cf514ab106eff967))
* Merge branch 'table-widget-review' (TICKETREF, [f350b6f](http://github.com/jquery/jquery-mobile/commit/f350b6f25684945cbeb865a35153cb6254c0b3e0))
* Merge branch 'table_review' of github.com:frequent/jquery-mobile into table-widget-review (TICKETREF, [84f3c33](http://github.com/jquery/jquery-mobile/commit/84f3c33be3fa97a7e0aca38084d5a9d311ff6b4a))
* Merge branch 'transition-handler-refactor' (TICKETREF, [46e1dde](http://github.com/jquery/jquery-mobile/commit/46e1dde81b007fd3b87b215598dc0c7b263993af))
* Merge branch popup-cleanup (TICKETREF, [992dac5](http://github.com/jquery/jquery-mobile/commit/992dac518d82d8247148c4457d325549dec2d3d7))
* Merge pull request #5594 from nschonni/remove-units-from-zero-values (TICKETREF, [f995a1c](http://github.com/jquery/jquery-mobile/commit/f995a1c717667ca53d8df5d70999838b1609222e))
* Merge pull request #5599 from poonkave/master (TICKETREF, [88a0769](http://github.com/jquery/jquery-mobile/commit/88a0769bd580c7de556c6957246cb00c2dbf5b9d))
* Merge pull request #5626 from stforek/duplicated_buttonmarkup (TICKETREF, [7faa9ef](http://github.com/jquery/jquery-mobile/commit/7faa9ef255d232a9ee5eba4e2d936e50ecc9dce6))
* Merge pull request #5655 from jquery/fix-buttonMarkup (TICKETREF, [3cf5d18](http://github.com/jquery/jquery-mobile/commit/3cf5d18127f2a6cd7e5b478d59cf2b5354ba3d15))
* Merge pull request #5691 from jhogervorst/issue-509 (TICKETREF, [418cbea](http://github.com/jquery/jquery-mobile/commit/418cbea708011918bddedab4868c49c902b6774c))
* Merge pull request #5721 from aristotelos/master (TICKETREF, [8d36366](http://github.com/jquery/jquery-mobile/commit/8d36366bbd41004648a04fd525152e39b074c7aa))
* Merge pull request #5761 from RedWolves/issue-5756 (TICKETREF, [4a48e82](http://github.com/jquery/jquery-mobile/commit/4a48e82032a91a8d5c63274302a427358abe81fa))
* Merge pull request #5767 from jonathansampson/patch-1 (TICKETREF, [71cebdd](http://github.com/jquery/jquery-mobile/commit/71cebdd6d6b8fd97c27367eea97fd48f136429d5))
* Merge pull request #5800 from jquery/fix-5775 (TICKETREF, [2151fc1](http://github.com/jquery/jquery-mobile/commit/2151fc163ad1b4d93c1d58f53bcd0460ea3864b5))
* Merge pull request #5826 from jquery/bug-5619-fixedtoolbarpadding (TICKETREF, [cab1c99](http://github.com/jquery/jquery-mobile/commit/cab1c993bfd450351b53afefc878fa6fbe777011))
* Merge pull request #5832 from BradBroulik/master (TICKETREF, [6c29d09](http://github.com/jquery/jquery-mobile/commit/6c29d09cd8a005b137e7b3cbfba69f75b46b4973))
* Merge pull request #5848 from jhogervorst/issue-5690 (TICKETREF, [0a8d34d](http://github.com/jquery/jquery-mobile/commit/0a8d34d94500ecae164d2bf1df5cb972086d26cb))
* Merge pull request #5890 from tomascassidy/patch-1 (TICKETREF, [6445b24](http://github.com/jquery/jquery-mobile/commit/6445b240dad148dbfbda5f6da0ee7c052cd000c8))
* Merge pull request #5925 from Sapprise/master (TICKETREF, [f6bfc67](http://github.com/jquery/jquery-mobile/commit/f6bfc6728c13e3932b9fbe805bfbafef135d4ca1))
* Merge pull request #6046 from jzaefferer/move-resetactivepageheight-nav-core-5997 (TICKETREF, [7d4e5e1](http://github.com/jquery/jquery-mobile/commit/7d4e5e15780a6443a770395233e06638e4360262))
* Merge pull request #6080 from AurelioDeRosa/patch-1 (TICKETREF, [b72bec9](http://github.com/jquery/jquery-mobile/commit/b72bec92589e7da8b733f9e6d468c3be898bb44b))
* Merge pull request #6083 from forresst/patch-1 (TICKETREF, [0b62206](http://github.com/jquery/jquery-mobile/commit/0b622062607325ae13177fcfd253a8bcafdfb06d))
* Merge pull request #6085 from forresst/patch-1 (TICKETREF, [b431897](http://github.com/jquery/jquery-mobile/commit/b43189764d70c0b7684e177ef60878d0eeab4f02))
* Merge pull request #6108 from jquery/flatten-custom-select (TICKETREF, [1ddce18](http://github.com/jquery/jquery-mobile/commit/1ddce18379b836e1c9f103ae420aafe8fbebae3d))
* Merge pull request #6112 from stforek/slider_unused_variable (TICKETREF, [1bd14c1](http://github.com/jquery/jquery-mobile/commit/1bd14c1cecf7e94d58fcbb9541a69618d83cd79d))
* Merge pull request #6130 from PizzaBrandon/master (TICKETREF, [5010177](http://github.com/jquery/jquery-mobile/commit/50101770f3d4a88057e03254cc459216bb8afb85))
* Merge pull request #6133 from jquery/mobile-base (TICKETREF, [4164256](http://github.com/jquery/jquery-mobile/commit/41642567424af5fa6e66c20026a5c1ad5f9a42a8))
* Merge pull request #6135 from jquery/popup-widget-review (TICKETREF, [de662e6](http://github.com/jquery/jquery-mobile/commit/de662e625ccc57909d3b0ed7cc72232ca7c163c0))
* Merge pull request #6256 from frequent/fix6255 (TICKETREF, [97e8dfd](http://github.com/jquery/jquery-mobile/commit/97e8dfd212fcf160dd2c83cb0f2477557402af9b))
* Merge pull request #6274 from allsteady/master (TICKETREF, [616a139](http://github.com/jquery/jquery-mobile/commit/616a139f709036d9b97b654f22dc0a5fd9df1855))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [162f87a](http://github.com/jquery/jquery-mobile/commit/162f87a110708646be5fa6f062046c943b49b425))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [58283ab](http://github.com/jquery/jquery-mobile/commit/58283abab1403e68516a4e5c078cee5c26b0a240))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [64719d6](http://github.com/jquery/jquery-mobile/commit/64719d65bf6b2a2ed0c233cb2f792c8322f276b6))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [77890d6](http://github.com/jquery/jquery-mobile/commit/77890d66d25ab7a074cd42eb2dcbfde830121eec))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [789a102](http://github.com/jquery/jquery-mobile/commit/789a1024f9be7574f245cd620f5b59e1f14eb5c1))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [9284657](http://github.com/jquery/jquery-mobile/commit/928465720104559302e6645b3397def59b2c6a03))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [c260b15](http://github.com/jquery/jquery-mobile/commit/c260b151953f66545da7a58eccb6f053190d0109))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [f3dc9bc](http://github.com/jquery/jquery-mobile/commit/f3dc9bce847231001f196203349ae9fd54b30399))
* Merge remote-tracking branch 'upstream/master' into grunt-0.4 (TICKETREF, [fd6e286](http://github.com/jquery/jquery-mobile/commit/fd6e286a3ab0941cdb156b589080ef55252c181e))
* Migrate over to using addEnhancementHook instead of binding to pagecreate. (TICKETREF, [aa23da3](http://github.com/jquery/jquery-mobile/commit/aa23da3add801212b8e8688022c5189f22791b79))
* MinScrollBack: change default to 0 and deprecate (TICKETREF, [536f153](http://github.com/jquery/jquery-mobile/commit/536f153b1472d240eedec574e76c0d87f1033ed9))
* Minor typo and correction to descriptive text. (TICKETREF, [40186b9](http://github.com/jquery/jquery-mobile/commit/40186b96e0aa1af43879aa4e3a84ab5b505d3b25))
* Minor typo and correction to descriptive text. (TICKETREF, [b626cd9](http://github.com/jquery/jquery-mobile/commit/b626cd96f459a377aa0d226fa06837b0defed0d5))
* Mobile Widget: Add todo comment about backcompat and to remove in 1.5 (TICKETREF, [1b76950](http://github.com/jquery/jquery-mobile/commit/1b76950cf053d72118acaff06a6ba2e81b1f47b6))
* More contrast on the docs, including code samples. Closes #5676. (TICKETREF, [be0180f](http://github.com/jquery/jquery-mobile/commit/be0180f280d6db3eb9cc04c0089588c5a0db19f1))
* Move $.mobile.resetActivePageHeight from navigation to core. Fixes #5997 - Panel depends on resetActivePageHeight ([#5997](http://github.com/jquery/jquery-mobile/issues/5997), [b39787b](http://github.com/jquery/jquery-mobile/commit/b39787ba8638bdc05060e418d9db8c8bf2fa161d))
* Move unique ID functions to core (TICKETREF, [d7dc563](http://github.com/jquery/jquery-mobile/commit/d7dc56352322e1ccc8b4a0957161ba7f77717578))
* Moved CSS for .ui-btn from button.css to core.css; Only use button.css for button and input elements (button widget). (TICKETREF, [c1a7520](http://github.com/jquery/jquery-mobile/commit/c1a7520eaae95243c315c2ff68bc9f814d4198e3))
* Moved CSS for button elements to core.css because it's not part of button widget. (TICKETREF, [cf74d5a](http://github.com/jquery/jquery-mobile/commit/cf74d5afdb0120eaaa9e0b9d850d3e70580fff7a))
* Moved Grunticon preview and loader.txt to demo center. (TICKETREF, [04061d0](http://github.com/jquery/jquery-mobile/commit/04061d0a3c6e9d22dbec3376e06299518381c54a))
* Moved RequireJS plugins to requirejs/plugins (TICKETREF, [870d4e2](http://github.com/jquery/jquery-mobile/commit/870d4e2b603dfccc6afcb26119e824ba23f048b9))
* Moved grunt task loading after the initConfig call (TICKETREF, [03b0dcc](http://github.com/jquery/jquery-mobile/commit/03b0dcc339207702fe5f6d4d3f50e6218c5f2aff))
* Moved icon CSS files out of subfolder. Updated path to fallback PNG icons. Added missing search icon url. Updated delete icon filename. (TICKETREF, [4d5199c](http://github.com/jquery/jquery-mobile/commit/4d5199ce1badf01d24c7621c073bf9babd061ea5))
* Moved icon positioning CSS from button to core because we use it for multiple widgets. (TICKETREF, [761d19b](http://github.com/jquery/jquery-mobile/commit/761d19b47e5d2c8198584db5dbb939a5864fdde0))
* Moved label style to core.css. (TICKETREF, [4061bbe](http://github.com/jquery/jquery-mobile/commit/4061bbef9d2df30f7c92020cdbd45ffe1ef78bf3))
* Moved old tasks to tasks.old (TICKETREF, [26dd721](http://github.com/jquery/jquery-mobile/commit/26dd721c991d03c3b72496ec82c3997acbc2ccd7))
* Moved transitions to a separate file because IE only allows 31 @imports on one page. (TICKETREF, [3b57fc0](http://github.com/jquery/jquery-mobile/commit/3b57fc09efb73ee0b06c82ce715b0bd8bb4d7567))
* Moving function domEqual to testHelper. (TICKETREF, [6b46f54](http://github.com/jquery/jquery-mobile/commit/6b46f54eeb8ce9bceb18b0e9f194922f9e7dd61e))
* Moving function domEqual to testHelper. (TICKETREF, [def71da](http://github.com/jquery/jquery-mobile/commit/def71da5e2331b533c5c958472ebed74275486fd))
* Navbar: Border top for navbar buttons if preceded by a heading. (TICKETREF, [e5f42f9](http://github.com/jquery/jquery-mobile/commit/e5f42f9e9bb257b74495df9969448b1ebd3ed2e3))
* Navbar: Changed active state logic. Fixes #5707 ([#5707](http://github.com/jquery/jquery-mobile/issues/5707), [70e2aed](http://github.com/jquery/jquery-mobile/commit/70e2aed27e09850a3488657d01a819ea07a167bf))
* Navbar: De-linting. (TICKETREF, [43853c9](http://github.com/jquery/jquery-mobile/commit/43853c9b278fec5e834a86cf0df6f2ebfbe3432d))
* Navbar: Get rid of buttonMarkup. (TICKETREF, [92497ab](http://github.com/jquery/jquery-mobile/commit/92497abd178ad8671b6e763b7c65555556d82e2d))
* Navbar: No class ui-mini for navbars but only set mini font-size. (TICKETREF, [25c3b36](http://github.com/jquery/jquery-mobile/commit/25c3b3675e5d99777f040a8ca4c3c0091e0716e4))
* Navbar: Removed code that checked if the event target is ui-btn-inner. (TICKETREF, [fb08c72](http://github.com/jquery/jquery-mobile/commit/fb08c721dbceb2bdc763019238ff2f9e93c4e8b6))
* Navbar: Set z-index on focus to ensure the focus style box-shadow is on top of other buttons (same as for controlgroup and listview). (TICKETREF, [b416d57](http://github.com/jquery/jquery-mobile/commit/b416d5731eceebe5d4af6f4f54dbe25626a48e25))
* Navbar: Theme inheritance and styling. (TICKETREF, [7265384](http://github.com/jquery/jquery-mobile/commit/72653844fe6f24ca0f6367c91366996538db4a0a))
* Navbar: Updated CSS to new button markup and icons in pseudo elements. (TICKETREF, [2468a35](http://github.com/jquery/jquery-mobile/commit/2468a35c61e23a9b00b3b4577dd04166af3e9c28))
* Navbar: Updated CSS to new button markup and icons in pseudo elements. (TICKETREF, [658258d](http://github.com/jquery/jquery-mobile/commit/658258d370d8fe5a626b4e9ccadf568d566b62a9))
* Navbar: make sure nav buttons with href="#" still get active state. (TICKETREF, [307ff5e](http://github.com/jquery/jquery-mobile/commit/307ff5e705472e80e7fc34a70aed34bcddf8e3af))
* Navigate event: Create a custom event called "beforenavigate" so that, when someone binds to "beforenavigate", the "navigate" event will be initialized. (TICKETREF, [58e94db](http://github.com/jquery/jquery-mobile/commit/58e94db8a34ed1aaf83547698b3d297b63fdec95))
* Navigation: Added content type for changePage with data argument. Fixed #5296 - Add contentType to settings for $.mobile.changePage with data argument ([#5296](http://github.com/jquery/jquery-mobile/issues/5296), [97feb6a](http://github.com/jquery/jquery-mobile/commit/97feb6a2f7bc8314600f49bb0935ea3374e5aa3c))
* Navigation: Change comma to semicolon in loadPage. Fixes #6265. ([#6265](http://github.com/jquery/jquery-mobile/issues/6265), [b556aba](http://github.com/jquery/jquery-mobile/commit/b556aba43921ee6141a8c6952ef7ecbcbd930edf))
* Navigation: Do not submit forms via AJAX if the "submit" event default is already prevented. (TICKETREF, [747ddbb](http://github.com/jquery/jquery-mobile/commit/747ddbbecf935b43a057749d93d6227e04d08836))
* Navigation: Honor formaction during submit. Fixes #3202. ([#3202](http://github.com/jquery/jquery-mobile/issues/3202), [6686c32](http://github.com/jquery/jquery-mobile/commit/6686c32ab14710236f37268439e91736568d43dd))
* Navigation: If the default is prevented on the originalEvent of "navigate", do not go into _handleHashChange. Fixes #5775. ([#5775](http://github.com/jquery/jquery-mobile/issues/5775), [c6dd725](http://github.com/jquery/jquery-mobile/commit/c6dd725ce183c6de0f21d7b72939792e4a2ff48a))
* Navigation: Make use of new hashToSelector() function to correctly identify embedded dialogs that do not posess the data-url attribute. Fixes #5949 - loadPage: Selecting by ID not special-character-friendly ([#5949](http://github.com/jquery/jquery-mobile/issues/5949), [3b0eb39](http://github.com/jquery/jquery-mobile/commit/3b0eb39051994aad3e3b54ca34bb870cd420ff86))
* Navigation: When choosing the title, it is unnecessary to escape entities, since the result will be assigned to document.title (which can presumably accept an unencoded string). Fixes #5749. ([#5749](http://github.com/jquery/jquery-mobile/issues/5749), [7446992](http://github.com/jquery/jquery-mobile/commit/744699272f6272c866e0335b84b3c52c60646f08))
* Navigation: When submitting a form via GET, strip query off URL before creating new query string. Fixes #5710. ([#5710](http://github.com/jquery/jquery-mobile/issues/5710), [0d4e839](http://github.com/jquery/jquery-mobile/commit/0d4e839782c8574799b31ff222f80c683dccac88))
* Navigation: getAjaxFormData: Simplify code. (TICKETREF, [0f5f290](http://github.com/jquery/jquery-mobile/commit/0f5f2902bc0d8d54d4e1b50e955a9d868a11c742))
* Navigation: loadPage: Do not examine member variables of parameter opts before having established opts is an object. (TICKETREF, [7ab9c6e](http://github.com/jquery/jquery-mobile/commit/7ab9c6ee96e9b3e380e569870b68574512c196e2))
* Navigation: reduced code of resetActivePageHeight() and made it take margin into account as well. (TICKETREF, [509f3b4](http://github.com/jquery/jquery-mobile/commit/509f3b4035d2db959d068b5b27705f28633624f2))
* Navigator: Identify initial popstate by recording the initial href, and then comparing it to the location upon the first hashchange. (TICKETREF, [c0ba8fa](http://github.com/jquery/jquery-mobile/commit/c0ba8faba37e1920d9c0f833ffb92a4ff471507e))
* Navigator: Prevent default on initial popstate. (TICKETREF, [320fbba](http://github.com/jquery/jquery-mobile/commit/320fbba3632d81c67ba046e26968aa048d22f214))