Commit d122d5b2 authored by Akikonata's avatar Akikonata

Merge branch 'dev' of github.com:fex-team/kityminder into dev

parents 985bf151 58054698
......@@ -91,14 +91,14 @@ Minder.Receiver = kity.createClass( 'Receiver', {
me.minderNode.setText( text );
if ( text.length == 0 ) {
me.minderNode.setText('a');
me.minderNode.setText( 'a' );
}
me.km.updateLayout( me.minderNode );
me.textShape = me.minderNode.getTextShape();
if(text.length == 0){
if ( text.length == 0 ) {
me.textShape.setOpacity( 0 );
}
me.setBaseOffset();
......@@ -164,7 +164,7 @@ Minder.Receiver = kity.createClass( 'Receiver', {
case 'keypress':
if(isTypeText)
if ( isTypeText )
setTextToContainer();
isKeypress = true;
break;
......@@ -186,7 +186,7 @@ Minder.Receiver = kity.createClass( 'Receiver', {
}
if(!isKeypress){
if ( !isKeypress ) {
setTextToContainer();
}
return true;
......@@ -226,17 +226,18 @@ Minder.Receiver = kity.createClass( 'Receiver', {
}
return this;
},
getBaseOffset: function (node) {
return this.textShape.getRenderBox( node || this.km.getRenderContainer() );
getBaseOffset: function ( node ) {
var rb = this.textShape.getRenderBox( this.km.getRenderContainer() );
return rb;
},
setBaseOffset: function () {
this.offset = this.textShape.getRenderBox( this.km.getRenderContainer() );
return this;
},
setContainerStyle: function () {
var textShapeBox = this.getBaseOffset('top');
var textShapeBox = this.getBaseOffset( 'top' );
this.container.style.cssText = ";left:" + textShapeBox.x + 'px;top:' + ( textShapeBox.y - 5) + 'px;width:' + textShapeBox.width + 'px;height:' + textShapeBox.height + 'px;';
this.container.style.cssText = ";left:" + textShapeBox.x + 'px;top:' + ( textShapeBox.y - 5 ) + 'px;width:' + textShapeBox.width + 'px;height:' + textShapeBox.height + 'px;';
return this;
},
getTextOffsetData: function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment