Skip to content

Commit

Permalink
patch out sync - wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Lasky committed Mar 1, 2016
1 parent 5bc45fa commit 4363f82
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 4 additions & 5 deletions src/mm-collection/mm-collection.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
behaviors: [
StrandTraits.Pageable,
StrandTraits.Refable
// StrandTraits.DomSyncable
],

factoryImpl: function(auto) {
Expand Down Expand Up @@ -78,7 +77,7 @@
fetch: function() {
return this.connection.get();
},

destroy: function() {
return this.connection.delete();
},
Expand All @@ -100,8 +99,8 @@
// },

// _collectionChanged: function() {
// this._collection.addEventListener("data-changed", function() {
// this.fire("data-changed");
// this._collection.addEventListener("data-changed", function() {
// this.fire("data-changed");
// }.bind(this));
// },

Expand Down Expand Up @@ -132,4 +131,4 @@
}

});
})(window.Strand = window.Strand || {});
})(window.Strand = window.Strand || {});
3 changes: 2 additions & 1 deletion src/shared/behaviors/pageable.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<link rel="import" href="../js/datautils.html"/>
<link rel="import" href="../js/sync.html"/>
<link rel="import" href="domsyncable.html"/>
<script>
/**
Expand Down Expand Up @@ -133,7 +134,7 @@
};

scope.Pageable = [
scope.Syncable,
StrandLib.Sync.getBehavior(),
scope.DomSyncable,
Pageable,
];
Expand Down

0 comments on commit 4363f82

Please sign in to comment.