Auto-focus the name field when showing copy form.

This commit is contained in:
Max Goodman
2013-05-07 16:14:05 -07:00
parent 9759934f7a
commit b12cafd377

View File

@@ -271,7 +271,9 @@ r.multi.MultiDetails = Backbone.View.extend({
},
showCopyMulti: function() {
this.$('form.copy-multi').show()
this.$('form.copy-multi')
.show()
.find('.copy-name').focus()
},
copyMulti: function(ev) {