Skip to content

Commit

Permalink
chore(Observable.ajax): change method to optional on interface, since…
Browse files Browse the repository at this point in the history
… it gets set to GET by default
  • Loading branch information
elliotschi committed Aug 23, 2016
1 parent 8b60e8d commit 01dfd7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/observable/dom/AjaxObservable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface AjaxRequest {
body?: any;
user?: string;
async?: boolean;
method: string;
method?: string;
headers?: Object;
timeout?: number;
password?: string;
Expand Down

0 comments on commit 01dfd7e

Please sign in to comment.