Merge pull request #48 from slhale/open46

[Edit] No more useless tooltips
This commit is contained in:
Victor Woeltjen 2015-07-14 12:00:10 -07:00
commit a2fd9357d8
3 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@
ng-style="{ bottom: (hSplitter.state()+8) + 'px', top: '0px' }"
ng-controller="ToggleController as toggle"
>
<mct-container key="accordion" title="Library">
<mct-container key="accordion" label="Library">
<mct-representation key="'tree'"
alias="foo1"
mct-object="editPanes.getRoot()">
@ -85,7 +85,7 @@
ng-style="{ bottom: '0px', height: (hSplitter.state()-4) + 'px'}"
ng-controller="ToggleController as toggle"
>
<mct-container key="accordion" title="Elements">
<mct-container key="accordion" label="Elements">
<mct-representation key="'edit-elements'" mct-object="domainObject">
</mct-representation>
</mct-container>

View File

@ -164,7 +164,7 @@
{
"key": "accordion",
"templateUrl": "templates/containers/accordion.html",
"attributes": [ "title" ]
"attributes": [ "label" ]
}
],
"representations": [

View File

@ -20,7 +20,7 @@
at runtime from the About dialog for additional information.
-->
<div class="accordion-head" ng-click="toggle.toggle()">
{{container.title}}
{{container.label}}
</div>
<div class="accordion-contents"
ng-show="!toggle.isActive()"