##// END OF EJS Templates
Added ESC keep to upload textbox to cancel.
Jeffrey Bush -
Show More
@@ -269,7 +269,10 b' define(['
269 .attr('value', name)
269 .attr('value', name)
270 .attr('size', '30')
270 .attr('size', '30')
271 .attr('type', 'text')
271 .attr('type', 'text')
272 .keyup(function(event){if(event.keyCode == 13){item.find('.upload_button').click();}})
272 .keyup(function(event){
273 if(event.keyCode == 13){item.find('.upload_button').click();}
274 else if(event.keyCode == 27){item.remove();}
275 })
273 );
276 );
274 };
277 };
275
278
General Comments 0
You need to be logged in to leave comments. Login now