Jordan Kasper

Results 18 comments of Jordan Kasper

This is correct behavior. Local storage is restricted by the same cross-origin policy as ajax requests, which includes restrictions based on protocol (http vs https), full domain (including subdomains), and...

The test suite for the `core` and `store` components run in IE8 just fine. The master branch has a bug in all browsers for the `request` module, but that has...

Since this PR is well out of date, and given theat we no longer have docs in the README, I'm inclined to port this one-line change to a new PR,...

Basically, appendTo shut down for a while then [got bought](http://appendto.com/2015/04/appendto-and-developintelligence-a-new-training-marriage/), this pretty much halted development on the project as the staff there were maintaining it. I'm not sure what @mikehostetler...

I have created a short term workaround for this. It only works for "top" tooltips, but could be made to work with other positions. The key was to trigger the...

Hi @mejiaj and @amyleadem, thanks for the continued hard work on USWDS! Unfortunately, the recent changes have _not_ resolved the issue. Here is a [codepen showing the issue](https://codepen.io/jakerella/pen/JjLNNOE) which was...

@mejiaj, @amyleadem, or @thisisdano: any chance someone can verify that this issue is not resolved per my comment above?

So glad to see this fixed! Is there a "canary" or pre-release minified JS file we can use to test things like this out in a codepen? Or do we...

Started working on this in #328 (basic support for 301 and 302)

Hmm... well, that's not a valid regex, but maybe you've already escaped it and GitHub just isn't checking properly? This: `settings.url.match(//restful/(.*)$/);` should probably be: `settings.url.match(/\/restful\/(.*)$/);` I'll have to write a...