Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3290 from WebsiteDeveloper/ResizerConstants
Browse files Browse the repository at this point in the history
Exported Resizer DIRECTION_* and POSITION_* constants
  • Loading branch information
jbalsas committed Mar 29, 2013
2 parents 00c6f97 + 43af136 commit c40b3ae
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/utils/Resizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,14 @@ define(function (require, exports, module) {
});
});

exports.makeResizable = makeResizable;
exports.toggle = toggle;
exports.show = show;
exports.hide = hide;
exports.makeResizable = makeResizable;
exports.toggle = toggle;
exports.show = show;
exports.hide = hide;

//Resizer Constants
exports.DIRECTION_VERTICAL = DIRECTION_VERTICAL;
exports.DIRECTION_HORIZONTAL = DIRECTION_HORIZONTAL;
exports.POSITION_TOP = POSITION_TOP;
exports.POSITION_RIGHT = POSITION_RIGHT;
});

0 comments on commit c40b3ae

Please sign in to comment.