Skip to content

Commit

Permalink
refactor(operator): add comments to generated dom patching
Browse files Browse the repository at this point in the history
  • Loading branch information
luisgabriel authored and kwonoj committed Jan 21, 2016
1 parent 19a2771 commit 6e941e2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
9 changes: 7 additions & 2 deletions src/add/observable/dom/ajax.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
/**
* Everything in this file is generated by the 'tools/generate-operator-patches.ts' script.
* Any manual edits to this file will be lost next time the script is run.
**/
import {Observable} from '../../../Observable';
import { AjaxObservable, AjaxCreationMethod } from '../../../observable/dom/ajax';
import {AjaxObservable} from '../../../observable/dom/ajax';

Observable.ajax = AjaxObservable.create;

export var _void: void;
export var _void: void;
7 changes: 6 additions & 1 deletion src/add/observable/dom/webSocket.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
/**
* Everything in this file is generated by the 'tools/generate-operator-patches.ts' script.
* Any manual edits to this file will be lost next time the script is run.
**/
import {Observable} from '../../../Observable';
import {WebSocketSubject} from '../../../observable/dom/webSocket';

Observable.webSocket = WebSocketSubject.create;

export var _void: void;
export var _void: void;

0 comments on commit 6e941e2

Please sign in to comment.