Steve Schwartz
Steve Schwartz
@DaAwesomeP The fix wasn't included due to the fact that it breaks the forward and back button functionality. I'll have to take a close look when I can get some...
To be clear, I don't think it's a bug in the hashchange plugin, it seems to be doing as it should. Rather, the line that @jebsilver changed (`skipUpdateToHash = false`...
We actually have a check elsewhere to see if the clicked tab is the currently active tab, on [lines 212](https://github.com/JangoSteve/jQuery-EasyTabs/blob/master/lib/jquery.easytabs.js#L212) and [216](https://github.com/JangoSteve/jQuery-EasyTabs/blob/master/lib/jquery.easytabs.js#L216). The way it's done there is: ``` js...
Hmm, maybe you could use the panel that's attached to the tab with something like: ``` js if ($clicked.data('easytabs').panel.is(':visible')) ```
Is this still an issue? If I understand what you're describing, that it's scrolling to the bottom of the panel content (and not the top), I don't think I've ever...
FYI, I recently ran into something similar, but I think one of the issues with the post as described here is that you're serializing with `HTTParty::HashConversions.to_params` but then parsing with...
The way I've handled this use-case is to embed ruby in my config file, like this: ``` s3_bucket: ``` Then I can deploy to staging by just running `jekyll-s3 push`,...
This can't be pulled in as-is. There's no such thing as a `params` attribut on a link tag, so using this would require the use of invalid HTML. Instead, it...
Hey @phillipp, could you squash your two commits down into one and update this PR? We also need to get a test added to make sure this is working as...
Thanks. I'll have to write a test when I get some time then. The one thing I'm concerned about, is that this only allows for `data-params` to be added as...