Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(window).on('load', function(){
- //---------------------------------//---------------------------------------------------------------------------------
- //--- CUSTOMIZE INPUT TYPE DATE ---//
- //---------------------------------//
- webshims.setOptions('waitReady', false);
- webshims.setOptions('forms-ext', {types: 'date'});
- webshims.polyfill('forms forms-ext');
- createStoredFilesTable();
- $('#storedFilesButton').click(function(){
- //webshims.polyfill('forms forms-ext');
- createStoredFilesTable();
- $('#contentCont').css('background', 'url(pictures/background_blue.svg)');
- $('#UploadButton').hide();
- $('#DragDrop').hide();
- $('#storedFiles').show();
- });
- $('#uploadFilesButton').click(function(){
- $('#contentCont').css('background', 'url(pictures/background_orange.svg)');
- $('#storedFiles').hide();
- if ('draggable' in document.createElement('span')) {
- $("#UploadButton").hide();
- $("#DragDrop").show();
- } else {
- $("#DragDrop").hide();
- $("#UploadButton").show();
- }
- });
- $(".btn-group-vertical > .btn").click(function(){
- $(this).addClass("active").siblings().removeClass("active");
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment