James

Results 13 issues of James

Great library, thank you. I don't know if I am doing this the right way, but I have been tying into the start and end function of the gestures and...

I recently upgraded ZingTouch and now I receive an error The working `index.js` looks like this ``` // working index.js require('./dist/zingtouch.min.js'); module.exports = ZingTouch; ``` The current code with `index.js`...

It appears that the new [Authorizable](https://github.com/laravel/framework/blob/5.1/src/Illuminate/Foundation/Auth/Access/Authorizable.php) trait also has a **can** method. I have temporarily resolved it using **may** instead which I believe is grammatically more correct anyway. ``` use...

When resizing window the element does not stick if it goes above the top of the browser. I added the double call, there may be a more elegant way to...

You master was off from the tag so I made a new branch, laravel5.4. I changed one line of code because app->share was deprecated in 5.4 for app->singleton. --- [**`share`...

Couldn't figure out the pull request. https://github.com/maknz/slack/blob/1.7.0/src/SlackServiceProviderLaravel5.php#L27 Change $this->app['maknz.slack'] = $this->app->share(function($app) to $this->app->singleton('maknz.slack', function($app)

Here is my directory structure ``` public/source/js/apps/home/index.js public/source/js/components/authenticate/ public/source/js/vendor/ ``` I have a few different 'apps' that handle different sections of the site. I want to build reusable components that...

I am following this **Laravel 11.x Compatibility #29** issue/pr and attempting to run this I get the following error. ``` Only one of these can be installed: illuminate/support[v5.0.0, ..., 5.8.x-dev,...

**Describe the bug** I am unable to log in using Twitter, but the same configuration allows me to log in with Facebook, Google, Discord, Twitch and others. I get the...

I upgraded to 5.2 and all my Integrated tests broke. [I have read](https://mattstauffer.co/blog/better-integration-testing-in-laravel-5.1-powerful-integration-tests-in-a-few-lines) that all the functionality of Integrated has been integrated into the core. I just can't see how...