Skip to content

Commit

Permalink
1.12.6-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
aFarkas committed Apr 25, 2014
1 parent 84edbc9 commit c09aabf
Show file tree
Hide file tree
Showing 79 changed files with 325 additions and 291 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.12.6-RC1",
"version": "1.12.6-RC2",
"homepage": "https://github.com/aFarkas/webshim",
"authors": [
"aFarkas <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion demos/demos/forms.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

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

<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC1</span>)</span></a>
<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC2</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 @@ -113,7 +113,7 @@

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

<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC1</span>)</span></a>
<a class="toc_title" href="../index.html"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC2</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 @@ -29,7 +29,7 @@

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

<a class="toc_title"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC1</span>)</span></a>
<a class="toc_title"> Webshim <span class="version">(<span class="ws-version">1.12.6-RC2</span>)</span></a>
<ul class="toc_section">
<li>
&raquo; <a href="https://github.com/aFarkas/webshim">GitHub Repository</a>
Expand Down Expand Up @@ -137,7 +137,7 @@ <h3 id="downloads">Downloads &amp; Dependencies</h3>

<table>
<tr>
<td><a href="http://corrupt-system.de/webshims-stable.zip" class="download-button"> <strong><i>Version <span class="ws-version">1.12.6-RC1</span></i></strong> </a></td>
<td><a href="http://corrupt-system.de/webshims-stable.zip" class="download-button"> <strong><i>Version <span class="ws-version">1.12.6-RC2</span></i></strong> </a></td>
<td class="text"></td>
</tr>
</table>
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 @@ -116,7 +116,7 @@
path = path.split('?')[0].slice(0, path.lastIndexOf("/") + 1) + 'shims/';

$.extend(webshims, {
version: '1.12.6-RC1',
version: '1.12.6-RC2',
cfg: {
enhanceAuto: window.Audio && (!window.matchMedia || matchMedia('(min-device-width: 721px)').matches),
//addCacheBuster: false,
Expand Down
17 changes: 9 additions & 8 deletions js-webshim/dev/shims/combos/10.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -702,13 +709,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down Expand Up @@ -3338,7 +3339,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
var init, parent, lastWidth, left, right, isRtl, hasButtons;
var oriStyleO = data.orig.style;
var styleO = data.element[0].style;
if($.support.boxSizing == null && !$.isReady){
if($.support.boxSizing == null){
$(function(){
parent = data.orig.parentNode;
});
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/shims/combos/11.js
Original file line number Diff line number Diff line change
Expand Up @@ -2148,7 +2148,7 @@
var init, parent, lastWidth, left, right, isRtl, hasButtons;
var oriStyleO = data.orig.style;
var styleO = data.element[0].style;
if($.support.boxSizing == null && !$.isReady){
if($.support.boxSizing == null){
$(function(){
parent = data.orig.parentNode;
});
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/15.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -702,13 +709,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/16.js
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -925,13 +932,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/shims/combos/17.js
Original file line number Diff line number Diff line change
Expand Up @@ -2753,7 +2753,7 @@ webshims.register('form-number-date-api', function($, webshims, window, document
var init, parent, lastWidth, left, right, isRtl, hasButtons;
var oriStyleO = data.orig.style;
var styleO = data.element[0].style;
if($.support.boxSizing == null && !$.isReady){
if($.support.boxSizing == null){
$(function(){
parent = data.orig.parentNode;
});
Expand Down
2 changes: 1 addition & 1 deletion js-webshim/dev/shims/combos/18.js
Original file line number Diff line number Diff line change
Expand Up @@ -4202,7 +4202,7 @@ webshims.isReady('es5', true);
var init, parent, lastWidth, left, right, isRtl, hasButtons;
var oriStyleO = data.orig.style;
var styleO = data.element[0].style;
if($.support.boxSizing == null && !$.isReady){
if($.support.boxSizing == null){
$(function(){
parent = data.orig.parentNode;
});
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/19.js
Original file line number Diff line number Diff line change
Expand Up @@ -2363,6 +2363,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -2374,13 +2381,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/2.js
Original file line number Diff line number Diff line change
Expand Up @@ -914,6 +914,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -925,13 +932,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/20.js
Original file line number Diff line number Diff line change
Expand Up @@ -2140,6 +2140,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -2151,13 +2158,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/25.js
Original file line number Diff line number Diff line change
Expand Up @@ -2363,6 +2363,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -2374,13 +2381,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/26.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -702,13 +709,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/3.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -702,13 +709,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
15 changes: 8 additions & 7 deletions js-webshim/dev/shims/combos/30.js
Original file line number Diff line number Diff line change
Expand Up @@ -691,6 +691,13 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
this.width = docObserve.getWidth();
setInterval(this.test, 999);
$(this.test);
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}
webshims.ready('WINDOWLOAD', this.test);
$(document).on('updatelayout.webshim pageinit popupafteropen panelbeforeopen tabsactivate collapsibleexpand shown.bs.modal shown.bs.collapse slid.bs.carousel', this.handler);
$(window).on('resize', this.handler);
Expand All @@ -702,13 +709,7 @@ webshims.register('dom-extend', function($, webshims, window, document, undefine
webshims.docObserve = function(){
webshims.ready('DOM', function(){
docObserve.start();
if($.support.boxSizing == null){
$(function(){
if($.support.boxSizing){
docObserve.handler({type: 'boxsizing'});
}
});
}

});
};
return function(nativeElem, shadowElem, opts){
Expand Down
Loading

0 comments on commit c09aabf

Please sign in to comment.