FEATURE: auto focus text editor when editing themes

This commit is contained in:
Sam
2017-04-13 16:21:46 -04:00
parent 43e4fc03ef
commit 9927489f4e
4 changed files with 26 additions and 2 deletions

View File

@ -38,6 +38,11 @@ export default Ember.Controller.extend({
return fieldName && fieldName.indexOf("scss") > -1 ? "scss" : "html";
},
@computed("fieldName", "currentTargetName")
editorId(fieldName, currentTarget) {
return fieldName + "|" + currentTarget;
},
@computed("fieldName", "currentTargetName", "model")
activeSection: {
get(fieldName, target, model) {