Skip to content
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

6 remove jquery reliance #15

Merged
merged 4 commits into from
Aug 2, 2011
Merged

6 remove jquery reliance #15

merged 4 commits into from
Aug 2, 2011

Conversation

ntoll
Copy link
Member

@ntoll ntoll commented Jul 29, 2011

This branch introduces three changes:

  1. The removal of jQuery as a requirement (and its replacement with a custom XHR based function)
  2. The hiding of all the utility function associated with the generation of a query in order to simplify the JS object's API
  3. Updates to the test suite as a result of 1 and 2.

ntoll added 3 commits July 29, 2011 20:35
…ons and the call that handles the XHR request to Fluidinfo so the fluidinfo object's interface is very simple and leaves no room for overriding how the request is sent/handled by the library.
}
xhr.onreadystatechange = function() {
if(xhr.readyState != 4) return;
if(xhr.status < 300 && xhr.status != 304) {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix this to xhr.status < 300 || xhr.status == 304

@terrycojones
Copy link
Member

LGTM!

ntoll added a commit that referenced this pull request Aug 2, 2011
Merges branch 6-remove-jquery-reliance that fixes issue #6.
@ntoll ntoll merged commit f7f80a2 into master Aug 2, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants