Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync built artifacts #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions demo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
function MyParentComponent(props) {
_classCallCheck(this, MyParentComponent);

var _this = _possibleConstructorReturn(this, Object.getPrototypeOf(MyParentComponent).call(this, props));
var _this = _possibleConstructorReturn(this, (MyParentComponent.__proto__ || Object.getPrototypeOf(MyParentComponent)).call(this, props));

_this.dataChanged = _this.dataChanged.bind(_this);
_this.state = {
Expand Down Expand Up @@ -146,7 +146,7 @@

'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };

Object.defineProperty(exports, "__esModule", {
value: true
Expand Down Expand Up @@ -200,7 +200,7 @@
_inherits(InlineEdit, _React$Component);

function InlineEdit() {
var _Object$getPrototypeO;
var _ref;

var _temp, _this, _ret;

Expand All @@ -210,7 +210,7 @@
args[_key] = arguments[_key];
}

return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_Object$getPrototypeO = Object.getPrototypeOf(InlineEdit)).call.apply(_Object$getPrototypeO, [this].concat(args))), _this), _this.state = {
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = InlineEdit.__proto__ || Object.getPrototypeOf(InlineEdit)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
editing: _this.props.editing,
text: _this.props.text,
minLength: _this.props.minLength,
Expand Down Expand Up @@ -312,7 +312,6 @@
className: this.props.activeClassName,
placeholder: this.props.placeholder,
defaultValue: this.state.text,
onReturn: this.finishEditing,
onChange: this.textChanged,
style: this.props.style,
ref: 'input' });
Expand Down
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var InlineEdit = function (_React$Component) {
_inherits(InlineEdit, _React$Component);

function InlineEdit() {
var _Object$getPrototypeO;
var _ref;

var _temp, _this, _ret;

Expand All @@ -40,7 +40,7 @@ var InlineEdit = function (_React$Component) {
args[_key] = arguments[_key];
}

return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_Object$getPrototypeO = Object.getPrototypeOf(InlineEdit)).call.apply(_Object$getPrototypeO, [this].concat(args))), _this), _this.state = {
return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = InlineEdit.__proto__ || Object.getPrototypeOf(InlineEdit)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
editing: _this.props.editing,
text: _this.props.text,
minLength: _this.props.minLength,
Expand Down Expand Up @@ -150,7 +150,6 @@ var InlineEdit = function (_React$Component) {
className: this.props.activeClassName,
placeholder: this.props.placeholder,
defaultValue: this.state.text,
onReturn: this.finishEditing,
onChange: this.textChanged,
style: this.props.style,
ref: 'input' });
Expand Down