1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-21 22:29:41 +02:00

focus on title when clicked

This commit is contained in:
Harvey Kandola 2017-01-18 13:56:11 -08:00
parent de0cbfd193
commit d89cba4f96

View file

@ -30,6 +30,10 @@ export default Ember.Component.extend({
});
$("#page-title").removeClass("error");
$("#page-title").focus(function() {
$(this).select();
});
},
willDestroyElement() {