coding guidelines

This commit is contained in:
Simon Birnbach 2012-03-16 00:11:50 +01:00
parent 45c9f1978e
commit b949619d04
1 changed files with 3 additions and 3 deletions

View File

@ -250,11 +250,11 @@ $(document).ready(function() {
}
}
if(totalSize>$('#max_upload').val()){
$( "#uploadsize-message" ).dialog({
$( '#uploadsize-message' ).dialog({
modal: true,
buttons: {
Close: function() {
$( this ).dialog( "close" );
$( this ).dialog( 'close' );
}
}
});
@ -302,7 +302,7 @@ $(document).ready(function() {
}
},
fail: function(e, data) {
console.debug("Fail", data);
console.debug('Fail', data);
// TODO: cancel upload & display error notification
},
progress: function(e, data) {