Bug 1246807 - Implement Editable width / height inputs r=jryans

This commit is contained in:
Gabriel Luong
2016-02-22 13:15:26 -05:00
parent fe5ab5d454
commit edb078d94e
7 changed files with 232 additions and 4 deletions

View File

@@ -9,12 +9,13 @@
const { DOM: dom, createClass, createFactory, PropTypes } =
require("devtools/client/shared/vendor/react");
const Constants = require("../constants");
const Types = require("../types");
const Browser = createFactory(require("./browser"));
const ViewportToolbar = createFactory(require("./viewport-toolbar"));
const VIEWPORT_MIN_WIDTH = 280;
const VIEWPORT_MIN_HEIGHT = 280;
const VIEWPORT_MIN_WIDTH = Constants.MIN_VIEWPORT_DIMENSION;
const VIEWPORT_MIN_HEIGHT = Constants.MIN_VIEWPORT_DIMENSION;
module.exports = createClass({