Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Anderson authored and aarontam committed Apr 3, 2015
1 parent 54be2c9 commit 7adbf23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions source/data/FluxDispatcher.js
Expand Up @@ -69,8 +69,6 @@ enyo.singleton({
*/
subscribe: function(storeid, callback) {

console.log(this);

//a store, or a view subscribes to be notified of an update
//to the data
var id = this.prefix + this.lastID++;
Expand Down
4 changes: 2 additions & 2 deletions source/data/FluxStore.js
Expand Up @@ -102,7 +102,7 @@
//subscribe the store to the dispatcher
this.id = enyo.FluxDispatcher.subscribe();
}
}
};
}),

/**
Expand Down Expand Up @@ -143,7 +143,7 @@
*/
fetch: function(opts) {

var opts = opts || {};
opts = opts || {};

opts.success = opts.success || this.success.bind(this);
opts.error = opts.error || this.error.bind(this);
Expand Down

0 comments on commit 7adbf23

Please sign in to comment.