Enable Enter key for dialogs

This commit is contained in:
Pierre-Olivier Latour
2014-04-14 10:34:43 -03:00
parent 7bceb8132a
commit dafcb0d895

View File

@@ -25,6 +25,8 @@
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
var ENTER_KEYCODE = 13;
var _path = null;
var _reloading = false;
var _pendingReloads = [];
@@ -212,6 +214,12 @@ $(document).ready(function() {
});
$("#create-input").keypress(function(event) {
if (event.keyCode == ENTER_KEYCODE) {
$("#create-confirm").click();
};
});
$("#create-modal").on("shown.bs.modal", function(event) {
$("#create-input").focus();
$("#create-input").select();
@@ -239,6 +247,12 @@ $(document).ready(function() {
}
});
$("#move-input").keypress(function(event) {
if (event.keyCode == ENTER_KEYCODE) {
$("#move-confirm").click();
};
});
$("#move-modal").on("shown.bs.modal", function(event) {
$("#move-input").focus();
$("#move-input").select();