remove log

This commit is contained in:
dntzhang 2018-10-28 21:20:15 +08:00
parent 1dba3330f2
commit 18e703ccd4
3 changed files with 7 additions and 15 deletions

View File

@ -77,7 +77,7 @@ Object.defineProperty(exports, "__esModule", {
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; };
/**
* omi v4.0.10 http://omijs.org
* omi v4.0.11 http://omijs.org
* Omi === Preact + Scoped CSS + Store System + Native Support in 3kb javascript.
* By dntzhang https://github.com/dntzhang
* Github: https://github.com/Tencent/omi
@ -540,7 +540,9 @@ function idiff(dom, vnode, context, mountAll, componentRoot) {
// Apply attributes/props from VNode to the DOM Element:
diffAttributes(out, vnode.attributes, props);
if (out.props) {
out.props.children = vnode.children;
}
// restore previous SVG mode: (in case we're exiting an SVG namespace)
isSvgMode = prevSvgMode;
@ -1418,7 +1420,7 @@ var omi = {
};
options.root.Omi = omi;
options.root.Omi.version = "4.0.10";
options.root.Omi.version = "4.0.11";
exports.default = omi;
exports.tag = tag;
@ -1485,9 +1487,7 @@ var MyApp = (_dec = (0, _omi.tag)('my-app'), _dec(_class = function (_WeElement)
}, {
key: 'render',
value: function render() {
console.log(1);
var dd = Omi.h(
return Omi.h(
'div',
null,
this.data.wording,
@ -1501,8 +1501,6 @@ var MyApp = (_dec = (0, _omi.tag)('my-app'), _dec(_class = function (_WeElement)
)
)
);
console.log(dd);
return dd;
}
}, {
key: 'css',
@ -1827,7 +1825,6 @@ var OmiFinger = function (_WeElement) {
}, {
key: 'render',
value: function render(props) {
console.log(props.children);
var a = (0, _omi.cloneElement)(props.children[0], {
onTouchStart: this._handleTouchStart,
onTouchMove: this._handleTouchMove,

View File

@ -18,9 +18,7 @@ class MyApp extends WeElement {
}
render() {
console.log(1)
var dd =(
return (
<div>
{this.data.wording}
<omi-finger onTap={this.handleTap} abc={{a:1}} onSwipe={this.handleSwipe}>
@ -30,8 +28,6 @@ class MyApp extends WeElement {
</omi-finger>
</div>
)
console.log(dd)
return dd
}
css() {

View File

@ -230,7 +230,6 @@ class OmiFinger extends WeElement {
}
render(props) {
console.log(props.children)
var a = cloneElement(props.children[0], {
onTouchStart: this._handleTouchStart,
onTouchMove: this._handleTouchMove,