Skip to content

Commit 83aee53

Browse files
Merge branch 'master' into ext-panels
2 parents 04ebf15 + 292bf8c commit 83aee53

File tree

130 files changed

+2442
-1713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+2442
-1713
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function( grunt ) {
99
copyrightYear = grunt.template.today( "UTC:yyyy" ),
1010
banner = {
1111
normal: [
12-
"/*",
12+
"/*!",
1313
"* jQuery Mobile <%= version %>",
1414
"* <%if ( headHash ) {%>Git HEAD hash: <%= headHash %> <> <% } %>Date: "+ grunt.template.today( "UTC:ddd mmm d yyyy HH:MM:ss Z" ),
1515
"* http://jquerymobile.com",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is the main repository for the jQuery Mobile project. From the [official we
44

55
> A unified, HTML5-based user interface system for all popular mobile device platforms, built on the rock-solid jQuery and jQuery UI foundation. Its lightweight code is built with progressive enhancement, and has a flexible, easily themeable design.
66
7-
jQuery Mobile 1.3 (1.3.0) works with versions of jQuery core from 1.7.0 to 1.9.0. You can find more information about how the library works, and what it is capable of, by reading the [documentation](http://jquerymobile.com/demos/).
7+
jQuery Mobile 1.3 (1.3.2) works with versions of jQuery core from 1.7.0 to 1.9.1. You can find more information about how the library works, and what it is capable of, by reading the [documentation](http://api.jquerymobile.com) and exploring the [demos](http://view.jquerymobile.com/1.3.2/dist/demos/).
88

99
## Contributing
1010

css/structure/jquery.mobile.button.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,8 @@ button.ui-btn-icon-notext {
5151
/* Fixes IE/WP filter alpha opacity bugs */
5252
.ui-input-btn.ui-state-disabled input {
5353
position: absolute !important;
54-
top: -9999px;
55-
left: -9999px;
5654
height: 1px;
5755
width: 1px;
5856
overflow: hidden;
59-
clip: rect(1px 1px 1px 1px);
6057
clip: rect(1px,1px,1px,1px);
6158
}

css/structure/jquery.mobile.collapsible.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
.ui-collapsible-set {
66
margin: .5em 0;
77
}
8+
.ui-collapsible + .ui-collapsible {
9+
margin-top: -.5em;
10+
}
811
.ui-collapsible-heading {
912
display: block;
1013
margin: 0;
@@ -25,20 +28,17 @@
2528
border-right-width: 1px;
2629
border-left-width: 1px;
2730
}
28-
.ui-collapsible-collapsed + .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn {
31+
.ui-collapsible-collapsed + .ui-collapsible:not(.ui-collapsible-inset) > .ui-collapsible-heading .ui-btn {
2932
border-top-width: 0;
3033
}
3134
.ui-collapsible-set .ui-collapsible:not(.ui-collapsible-inset) .ui-collapsible-heading .ui-btn {
3235
border-top-width: 1px;
3336
}
3437
.ui-collapsible-heading-status {
3538
position: absolute !important;
36-
top: -9999px;
37-
left: -9999px;
3839
height: 1px;
3940
width: 1px;
4041
overflow: hidden;
41-
clip: rect(1px 1px 1px 1px);
4242
clip: rect(1px,1px,1px,1px);
4343
}
4444
.ui-collapsible-content {

css/structure/jquery.mobile.controlgroup.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,8 @@ fieldset.ui-controlgroup {
114114
}
115115
.ui-controlgroup-controls > label {
116116
position: absolute !important;
117-
top: -9999px;
118-
left: -9999px;
119117
height: 1px;
120118
width: 1px;
121119
overflow: hidden;
122-
clip: rect(1px 1px 1px 1px);
123120
clip: rect(1px,1px,1px,1px);
124121
}

css/structure/jquery.mobile.core.css

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,16 @@
1212
.ui-mobile fieldset {
1313
border-width: 0;
1414
}
15+
/* Fixes for fieldset issues on IE10 and FF (see #6077) */
1516
.ui-mobile fieldset {
1617
min-width: 0;
1718
}
19+
@-moz-document url-prefix() {
20+
.ui-mobile fieldset {
21+
display: table-column;
22+
}
23+
}
24+
1825
/* Viewport */
1926
.ui-mobile-viewport {
2027
margin: 0;
@@ -68,12 +75,9 @@ div.ui-mobile-viewport {
6875
/* Non-js content hiding */
6976
.ui-nojs {
7077
position: absolute !important;
71-
top: -9999px;
72-
left: -9999px;
7378
height: 1px;
7479
width: 1px;
7580
overflow: hidden;
76-
clip: rect(1px 1px 1px 1px);
7781
clip: rect(1px,1px,1px,1px);
7882
}
7983

@@ -374,11 +378,8 @@ div.ui-mobile-viewport {
374378
.ui-hide-label .ui-rangeslider label,
375379
.ui-hidden-accessible {
376380
position: absolute !important;
377-
top: -9999px;
378-
left: -9999px;
379381
height: 1px;
380382
width: 1px;
381383
overflow: hidden;
382-
clip: rect(1px 1px 1px 1px);
383384
clip: rect(1px,1px,1px,1px);
384385
}

css/structure/jquery.mobile.fixedToolbar.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,9 @@
5252
.ui-page-header-fullscreen .ui-fixed-hidden,
5353
.ui-page-footer-fullscreen .ui-fixed-hidden {
5454
position: absolute !important;
55-
top: -9999px;
56-
left: -9999px;
5755
height: 1px;
5856
width: 1px;
5957
overflow: hidden;
60-
clip: rect(1px 1px 1px 1px);
6158
clip: rect(1px,1px,1px,1px);
6259
}
6360
.ui-header-fixed .ui-btn,

css/structure/jquery.mobile.forms.checkboxradio.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,9 @@
4444
}
4545
.ui-checkbox input:disabled,
4646
.ui-radio input:disabled {
47-
top: -9999px;
48-
left: -9999px;
47+
position: absolute !important;
4948
height: 1px;
5049
width: 1px;
5150
overflow: hidden;
52-
clip: rect(1px 1px 1px 1px);
5351
clip: rect(1px,1px,1px,1px);
5452
}

css/structure/jquery.mobile.forms.rangeslider.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,9 @@ html >/**/body .ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track:
5050
/* Hide the second label (the first is moved outside the div) */
5151
div.ui-rangeslider label {
5252
position: absolute !important;
53-
top: -9999px;
54-
left: -9999px;
5553
height: 1px;
5654
width: 1px;
5755
overflow: hidden;
58-
clip: rect(1px 1px 1px 1px);
5956
clip: rect(1px,1px,1px,1px);
6057
}
6158
.ui-field-contain .ui-rangeslider input.ui-slider-input,

css/structure/jquery.mobile.forms.select.css

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@
55
}
66
.ui-select > select {
77
position: absolute !important;
8-
top: -9999px;
9-
left: -9999px;
108
height: 1px;
119
width: 1px;
1210
overflow: hidden;
13-
clip: rect(1px 1px 1px 1px);
1411
clip: rect(1px,1px,1px,1px);
1512
}
1613
.ui-select .ui-btn {

0 commit comments

Comments
 (0)