-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A toggleable 'back' button in front of the breadcrumbs #137
base: master
Are you sure you want to change the base?
Conversation
Wouldn't this make more sense in a directive on its own? So I can decide
|
Most applications seem to put it there (browsers, windows explorer), so I think this is the most intuitive location where users would expect to find such a button. I didn't really find another appropriate 'candidate' location to put it (inside the framework). Do you see a better or equivalent option ? |
Just a separate directive, and then include it at that spot if you want it. It's more about making little modules with a sane setup, instead of
|
I agree it'd be better as a separate directive, but the problem is, if it were, you wouldn't be able to include it at that spot in the nav bar, which is, imo, the most logical place to put it, as it's generally done in browsers & file explorers. But maybe it's just me - a third opinion would be welcome :) @koenmetsu @ArneD @sroosen ? |
I don't see why you wouldn't be able to include it at that spot? You just
|
And anyone who wants to add it there then needs to add quite a bit of tricky css and override some bootstrap and ace css... and I still haven't been able to get it as smooth as with just another |
I think a directive and an additional The directive can consist of
This way your markup still applies to the breadcrumb and the button can be placed anywhere when needed. |
Fixes issue #136