-
Notifications
You must be signed in to change notification settings - Fork 16
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
Disable url fragment and avoid anchor scroll #26
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wanted to check everything but you changed a whole bunch. most likely to test it for yourself but please fix the obvious things.
Also next time review your own pr before submitting it :)
## Installation | ||
|
||
Install the package into a Laravel app that uses [Nova](https://nova.laravel.com) with Composer: | ||
|
||
```bash | ||
composer require arsenaltech/nova-tab | ||
composer require 64robots/nova-tab |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please put this back the way it was since it doesn't comply with the changes you told you where making.
This PR disables url fragment in order to be compatible with Nova and its router.
``` | ||
|
||
## Usage | ||
|
||
Add the Tabs trait to your App\Nova\Resource class. | ||
|
||
```php | ||
use Arsenaltech\NovaTab\Tabs; | ||
use R64\NovaTab\Tabs; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use R64\NovaTab\Tabs; | |
use Arsenaltech\NovaTab\Tabs; |
@@ -1,26 +1,21 @@ | |||
# Laravel Nova Tab [![Total Downloads](https://poser.pugx.org/arsenaltech/nova-tab/downloads)](https://packagist.org/packages/arsenaltech/nova-tab) | |||
|
|||
# Laravel Nova Tab |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# Laravel Nova Tab | |
# Laravel Nova Tab [![Total Downloads](https://poser.pugx.org/arsenaltech/nova-tab/downloads)](https://packagist.org/packages/arsenaltech/nova-tab) |
@@ -1,26 +1,21 @@ | |||
# Laravel Nova Tab [![Total Downloads](https://poser.pugx.org/arsenaltech/nova-tab/downloads)](https://packagist.org/packages/arsenaltech/nova-tab) | |||
|
|||
# Laravel Nova Tab | |||
|
|||
Custom Nova field to render tabs | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
![Edit](http://take.ms/MFDjX) | |
![Detail](http://take.ms/44q7f) | |
![Validation](http://take.ms/S6hZI) |
Sorry I did the pr hoping for a quick merge. But we needed all these changes in our fork for a client. Original pr was only the first commit. |
That means you still need to change this pr before actually being able to get the fix through. |
This PR disables url fragment in order to be compatible with Nova and its router.
Closes #13