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