ember-cli-materialize icon indicating copy to clipboard operation
ember-cli-materialize copied to clipboard

Add the ability to display content on the left side of the navbar (like logo image)

Open yonida opened this issue 10 years ago • 2 comments

yonida avatar Aug 04 '15 13:08 yonida

@yonida thanks for opening this ticket. Do you have a proposed syntax?

mike-north avatar Aug 04 '15 18:08 mike-north

instead of doing this:

<div class='container'>
    {{#link-to homeRoute class='brand-logo'}}{{name}}{{/link-to}}
    <ul class='right hide-on-med-and-down'>
      {{yield}}
    </ul>
</div>

maybe let the user implement the inner content, without constraining him to the right side. something like:

<div class='container'>
    {{#link-to homeRoute class='brand-logo'}}{{name}}{{/link-to}}
    {{yield}}
</div>

yonida avatar Aug 05 '15 09:08 yonida