2015-12-07 21:51:07 +01:00
|
|
|
/* global webshim */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* load webshim polyfill
|
2016-01-28 23:48:14 +01:00
|
|
|
* used for input[type='time']
|
2015-12-07 21:51:07 +01:00
|
|
|
*/
|
2015-12-07 21:55:17 +01:00
|
|
|
export function initialize() {
|
2015-12-07 21:51:07 +01:00
|
|
|
webshim.setOptions({
|
2016-01-28 23:48:14 +01:00
|
|
|
waitReady: false
|
2015-12-07 21:51:07 +01:00
|
|
|
});
|
2016-01-28 23:48:14 +01:00
|
|
|
webshim.setOptions('forms-ext', {
|
|
|
|
'widgets': {
|
|
|
|
'nopicker': true
|
2015-12-07 21:51:07 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
webshim.polyfill('forms forms-ext');
|
|
|
|
}
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'webshim-polyfill',
|
|
|
|
initialize
|
|
|
|
};
|