Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-jquery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9962071e4c42
Choose a base ref
...
head repository: opal/opal-jquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7d3c228b0d3d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 10, 2014

  1. Copy the full SHA
    80edeb1 View commit details

Commits on Jan 11, 2014

  1. Merge pull request #34 from svoboda-jan/fix_status_code_on_http

    fix, return the status_code in http.rb
    adambeynon committed Jan 11, 2014
    Copy the full SHA
    7d3c228 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 opal/opal-jquery/http.rb
2 changes: 2 additions & 0 deletions opal/opal-jquery/http.rb
Original file line number Diff line number Diff line change
@@ -48,6 +48,7 @@ def initialize(url, method, options, handler=nil)
settings.success = function(data, status, xhr) {
http.body = data;
http.xhr = xhr;
http.status_code = xhr.status;
if (typeof(data) === 'object') {
http.json = #{ JSON.from_object `data` };
@@ -59,6 +60,7 @@ def initialize(url, method, options, handler=nil)
settings.error = function(xhr, status, error) {
http.body = xhr.responseText;
http.xhr = xhr;
http.status_code = xhr.status;
return #{ http.fail };
};