hide dropbox path when not enabled and set simple transistions to speed up playbook response

This commit is contained in:
Morgan McMillian 2012-03-10 20:24:57 -05:00
parent 1bba91356c
commit 23991a26de
2 changed files with 3 additions and 2 deletions

View file

@ -82,7 +82,7 @@ enyo.kind({
} }
]}, ]},
{kind: "Item", layoutKind: "HFlexLayout", {kind: "Item", layoutKind: "HFlexLayout",
name: "dboxpathselect", showing: true, name: "dboxpathselect", showing: false,
components: [ components: [
{flex: 1, kind: "Input", name: "dboxpath", {flex: 1, kind: "Input", name: "dboxpath",
preferenceProperty: "dboxpath", preferenceProperty: "dboxpath",

View file

@ -44,7 +44,8 @@ enyo.kind({
{name: "viewTitle", kind: "HtmlContent", {name: "viewTitle", kind: "HtmlContent",
className: "todo-view-title", content: ""} className: "todo-view-title", content: ""}
]}, ]},
{flex: 1, kind: "Pane", onSelectView: "viewSelected", components: [ {flex: 1, kind: "Pane", onSelectView: "viewSelected",
transitionKind: enyo.transitions.Simple, components: [
{name: "listView", kind: "TodoList", onEdit: "showEditView", {name: "listView", kind: "TodoList", onEdit: "showEditView",
onPrefs: "showPrefView", onReload: "refreshTodo" onPrefs: "showPrefView", onReload: "refreshTodo"
}, },