Taha Paksu

Results 23 comments of Taha Paksu

Your example had a little bug, that HTML pages don't allow the same ID in multiple elements. I've tinkered with your fiddle a little bit, and a different bug came...

https://github.com/itskodinger/midia/blob/da391cff0c70b964bb6fd9a944f69503d79dbf3f/src/Controller/MidiaController.php#L18-L20 This may be your entry point. You can open your window with that parameter or initialize your midia js instance with `directory_name` parameter https://github.com/itskodinger/midia/blob/da391cff0c70b964bb6fd9a944f69503d79dbf3f/src/Public/midia.js#L87-L89 This way you can use...

It's hardcoded here, if you can fork and change this line, I thinki it'll work: https://github.com/caffeinated/themes/blob/c13045bd42f5a0753b3ed804f6c5100fe899f474/src/Theme.php#L59

And also fix symlinks: https://github.com/caffeinated/themes/blob/c13045bd42f5a0753b3ed804f6c5100fe899f474/src/Theme.php#L129-L140 Maybe there are more. I suggest opening a PR for adding this path to the config file.

Once I removed the space between = and the country code, the error disappeared. IT was `countryName_default = TR` then I set it to `countryName_default =TR`

Will also fix #747.

Hi @Sephster , **TL;DR** oauth2-server package doesn't give the user the ability to customize the messages, still it would be hardcoded localized strings for the user. but packages with laravel...

Until I realized that some messages are dynamically generated, this was my implementation: in `laravel/passport` package I've added a new method to `src/Http/Controllers/HandlesOAuthErrors.php`: ```php /** * Translates the response content...

FYI, `onPositionChange` event also can be a workaround before the code itself isn't changed. I'm using the directive like `v-draggable='draggables'` and then the data and event parameter would become: data()...

Or better; ``` [draggable-state]{ position: absolute !important; } ```