Skip to content

Commit

Permalink
1.15.6
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed Jan 18, 2015
1 parent 3ae904c commit 03d8834
Show file tree
Hide file tree
Showing 32 changed files with 98 additions and 46 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webshim",
"version": "1.15.6-RC1",
"version": "1.15.6",
"homepage": "https://github.com/aFarkas/webshim",
"authors": [
"aFarkas <info@corrupt-system.de>"
Expand Down
2 changes: 1 addition & 1 deletion demos/demos/forms.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<div id="sidebar" class="interface">

<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.15.6-RC1</span>)</span></a>
<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.15.6</span>)</span></a>
<ul class="toc_section">
<li>
&raquo; <a href="https://github.com/aFarkas/webshim">GitHub Repository</a>
Expand Down
2 changes: 1 addition & 1 deletion demos/demos/mediaelement.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@

<div id="sidebar" class="interface">

<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.15.6-RC1</span>)</span></a>
<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.15.6</span>)</span></a>
<ul class="toc_section">
<li>
&raquo; <a href="https://github.com/aFarkas/webshim">GitHub Repository</a>
Expand Down
4 changes: 2 additions & 2 deletions demos/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<div id="sidebar" class="interface">

<a class="toc_title"> Webshim <span class="version">(<span class="ws-version">1.15.6-RC1</span>)</span></a>
<a class="toc_title"> Webshim <span class="version">(<span class="ws-version">1.15.6</span>)</span></a>
<ul class="toc_section">
<li>
&raquo; <a href="https://github.com/aFarkas/webshim">GitHub Repository</a>
Expand Down Expand Up @@ -146,7 +146,7 @@
<h3 id="downloads">Downloads &amp; Dependencies</h3>
<span style="padding-left: 7px; font-size:11px; font-weight: normal;" class="interface">(Right-click, and use "Save As")</span>
<p>
<a href="https://github.com/aFarkas/webshim/archive/1.15.6-RC1.zip" class="download-button"> <strong><i>Download</i></strong> </a>
<a href="https://github.com/aFarkas/webshim/archive/1.15.6.zip" class="download-button"> <strong><i>Download</i></strong> </a>
</p>

<p>
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/polyfiller.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
}

$.extend(webshims, {
version: '1.15.6-RC1',
version: '1.15.6',

cfg: {
enhanceAuto: window.Audio && (!window.matchMedia || matchMedia('(min-device-width: 721px)').matches),
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/10.js
Original file line number Diff line number Diff line change
Expand Up @@ -3377,7 +3377,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -3694,7 +3694,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/11.js
Original file line number Diff line number Diff line change
Expand Up @@ -2141,7 +2141,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -2458,7 +2458,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/17.js
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -3074,7 +3074,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/5.js
Original file line number Diff line number Diff line change
Expand Up @@ -2968,7 +2968,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -3285,7 +3285,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/6.js
Original file line number Diff line number Diff line change
Expand Up @@ -2968,7 +2968,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -3285,7 +3285,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/combos/9.js
Original file line number Diff line number Diff line change
Expand Up @@ -3377,7 +3377,7 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -3694,7 +3694,11 @@ webshims.register('form-number-date-ui', function ($, webshims, window, document
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/shims/combos/comboinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"1.15.6-RC1","features":{"swfmini":[16,7,2,8,1,12,23],"dom-support":[16,7,2,8,15,30,3,4,9,10,25,31,34],"forms":[16,7,2,8,1,15,30,3,4,9,31,6,5,14,29,28,27,33],"mediaelement":[16,7,2,8,1,12,23,25,21,13],"track":[12,34,21,22,13],"range-ui":[9,10,6,5,17,11],"forms-ext":[9,10,6,5,14,29,28,17,33,11],"filereader":[25,27],"picture":[18],"matchMedia":[18],"geolocation":[21],"details":[21,22],"jmebase":[98,99,97],"mediacontrols":[98,99],"playlist":[98,97]},"files":{"src/shims/combos/16.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/7.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/2.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/8.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/mediaelement-core.js"],"src/shims/combos/1.js":["src/shims/swfmini.js","src/shims/form-core.js","src/shims/mediaelement-core.js"],"src/shims/combos/12.js":["src/shims/swfmini.js","src/shims/mediaelement-core.js","src/shims/track.js"],"src/shims/combos/23.js":["src/shims/swfmini.js","src/shims/mediaelement-core.js"],"src/shims/combos/15.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-datalist.js"],"src/shims/combos/30.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/form-datalist.js"],"src/shims/combos/3.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js"],"src/shims/combos/4.js":["src/shims/dom-extend.js","src/shims/form-message.js"],"src/shims/combos/9.js":["src/shims/dom-extend.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js","src/shims/form-datalist.js"],"src/shims/combos/10.js":["src/shims/dom-extend.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/25.js":["src/shims/dom-extend.js","src/shims/filereader-xhr.js","src/shims/mediaelement-jaris.js"],"src/shims/combos/31.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-datalist.js"],"src/shims/combos/34.js":["src/shims/dom-extend.js","src/shims/track.js"],"src/shims/combos/18.js":["src/shims/picture.js","src/shims/matchMedia.js"],"src/shims/combos/21.js":["src/shims/geolocation.js","src/shims/details.js","src/shims/mediaelement-jaris.js","src/shims/track.js"],"src/shims/combos/6.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js","src/shims/form-datalist.js"],"src/shims/combos/5.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/14.js":["src/shims/form-native-extend.js","src/shims/form-message.js","src/shims/form-number-date-api.js"],"src/shims/combos/29.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js"],"src/shims/combos/28.js":["src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-number-date-api.js","src/shims/form-datalist.js"],"src/shims/combos/27.js":["src/shims/form-shim-extend2.js","src/shims/filereader-xhr.js"],"src/shims/combos/17.js":["src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/33.js":["src/shims/form-number-date-api.js","src/shims/form-datalist.js"],"src/shims/combos/11.js":["src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/22.js":["src/shims/details.js","src/shims/track.js"],"src/shims/combos/13.js":["src/shims/mediaelement-core.js","src/shims/track.js"],"src/shims/combos/98.js":["src/shims/jme/base.js","src/shims/jme/mediacontrols.js","src/shims/jme/playlist.js"],"src/shims/combos/99.js":["src/shims/jme/base.js","src/shims/jme/mediacontrols.js"],"src/shims/combos/97.js":["src/shims/jme/base.js","src/shims/jme/playlist.js"]}}
{"version":"1.15.6","features":{"swfmini":[16,7,2,8,1,12,23],"dom-support":[16,7,2,8,15,30,3,4,9,10,25,31,34],"forms":[16,7,2,8,1,15,30,3,4,9,31,6,5,14,29,28,27,33],"mediaelement":[16,7,2,8,1,12,23,25,21,13],"track":[12,34,21,22,13],"range-ui":[9,10,6,5,17,11],"forms-ext":[9,10,6,5,14,29,28,17,33,11],"filereader":[25,27],"picture":[18],"matchMedia":[18],"geolocation":[21],"details":[21,22],"jmebase":[98,99,97],"mediacontrols":[98,99],"playlist":[98,97]},"files":{"src/shims/combos/16.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/7.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/2.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-datalist.js","src/shims/mediaelement-core.js"],"src/shims/combos/8.js":["src/shims/swfmini.js","src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/mediaelement-core.js"],"src/shims/combos/1.js":["src/shims/swfmini.js","src/shims/form-core.js","src/shims/mediaelement-core.js"],"src/shims/combos/12.js":["src/shims/swfmini.js","src/shims/mediaelement-core.js","src/shims/track.js"],"src/shims/combos/23.js":["src/shims/swfmini.js","src/shims/mediaelement-core.js"],"src/shims/combos/15.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-datalist.js"],"src/shims/combos/30.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js","src/shims/form-datalist.js"],"src/shims/combos/3.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-message.js"],"src/shims/combos/4.js":["src/shims/dom-extend.js","src/shims/form-message.js"],"src/shims/combos/9.js":["src/shims/dom-extend.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js","src/shims/form-datalist.js"],"src/shims/combos/10.js":["src/shims/dom-extend.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/25.js":["src/shims/dom-extend.js","src/shims/filereader-xhr.js","src/shims/mediaelement-jaris.js"],"src/shims/combos/31.js":["src/shims/dom-extend.js","src/shims/form-core.js","src/shims/form-datalist.js"],"src/shims/combos/34.js":["src/shims/dom-extend.js","src/shims/track.js"],"src/shims/combos/18.js":["src/shims/picture.js","src/shims/matchMedia.js"],"src/shims/combos/21.js":["src/shims/geolocation.js","src/shims/details.js","src/shims/mediaelement-jaris.js","src/shims/track.js"],"src/shims/combos/6.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js","src/shims/form-datalist.js"],"src/shims/combos/5.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/14.js":["src/shims/form-native-extend.js","src/shims/form-message.js","src/shims/form-number-date-api.js"],"src/shims/combos/29.js":["src/shims/form-native-extend.js","src/shims/form-number-date-api.js"],"src/shims/combos/28.js":["src/shims/form-shim-extend.js","src/shims/form-message.js","src/shims/form-number-date-api.js","src/shims/form-datalist.js"],"src/shims/combos/27.js":["src/shims/form-shim-extend2.js","src/shims/filereader-xhr.js"],"src/shims/combos/17.js":["src/shims/form-number-date-api.js","src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/33.js":["src/shims/form-number-date-api.js","src/shims/form-datalist.js"],"src/shims/combos/11.js":["src/shims/range-ui.js","src/shims/form-number-date-ui.js"],"src/shims/combos/22.js":["src/shims/details.js","src/shims/track.js"],"src/shims/combos/13.js":["src/shims/mediaelement-core.js","src/shims/track.js"],"src/shims/combos/98.js":["src/shims/jme/base.js","src/shims/jme/mediacontrols.js","src/shims/jme/playlist.js"],"src/shims/combos/99.js":["src/shims/jme/base.js","src/shims/jme/mediacontrols.js"],"src/shims/combos/97.js":["src/shims/jme/base.js","src/shims/jme/playlist.js"]}}
8 changes: 6 additions & 2 deletions js-webshim/dev/shims/form-number-date-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ webshims.register('form-number-date-ui', function($, webshims, window, document,
popover.activeElement.focus();
}, 4);
}
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
if(data.element.is(':focus') && !$.nodeName(e.target, 'select')){
popover.openedByFocus = options.buttonOnly ? false : !options.noInput;
show();
}
Expand Down Expand Up @@ -1838,7 +1838,11 @@ webshims.register('form-number-date-ui', function($, webshims, window, document,
$(data.shim.options.containerElements)
.on({
'focusin focus focusout blur': function(e){
e.stopPropagation();
if(e.type == 'focus'){
e.stopPropagation();
} else {
e.stopImmediatePropagation();
}
hasFocus = has[e.type];
clearTimeout(timer);
timer = setTimeout(function(){
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/shims/form-validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ webshims.register('form-validation', function($, webshims, window, document, und
var errorBox = $('.'+errorBoxClass, fieldWrapper);

if(!errorBox.length){
errorBox = $('<'+errorBoxWrapper+' class="'+ errorBoxClass +'" hidden="hidden" style="display: none;">');
errorBox = $('<'+errorBoxWrapper+' class="'+ errorBoxClass +'" hidden="hidden" style="display: none;" />');
fieldWrapper.append(errorBox);
}
if(!errorBox.prop('id')){
Expand Down

0 comments on commit 03d8834

Please sign in to comment.