Skip to content

Commit

Permalink
added resize target to resizable
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Lasky committed Jun 26, 2015
1 parent c55059f commit 801b3ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/shared/behaviors/Resizable.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

(function (scope) {

var _cache = [];
var _instances = [];
var _il = 0;
Expand Down Expand Up @@ -66,11 +66,11 @@
},

attached:function() {
_addInstance(this);
_addInstance(this.resizeTarget);
},

detached:function() {
_removeInstance(this);
_removeInstance(this.resizeTarget);
},

elementResize: function(e) {
Expand All @@ -79,4 +79,4 @@

};

})(window.StrandTraits = window.StrandTraits || {});
})(window.StrandTraits = window.StrandTraits || {});

0 comments on commit 801b3ae

Please sign in to comment.