Add nice whole file support

This commit is contained in:
Skia
2016-08-10 05:48:06 +02:00
parent 6fbf607492
commit 792d66da33
51 changed files with 35202 additions and 119 deletions

View File

@ -0,0 +1,11 @@
console.log('Guy');
$( function() {
dialog = $( ".choose_file_widget" ).dialog({
autoOpen: false,
modal: true,
});
$( ".choose_file_button" ).button().on( "click", function() {
dialog.dialog( "open" );
});
} );