svnno****@sourc*****
svnno****@sourc*****
2010年 3月 4日 (木) 23:35:45 JST
Revision: 1695
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1695
Author: dhrname
Date: 2010-03-04 23:35:45 +0900 (Thu, 04 Mar 2010)
Log Message:
-----------
不要なコメントを除去
Modified Paths:
--------------
branches/ufltima/core.js
Modified: branches/ufltima/core.js
===================================================================
--- branches/ufltima/core.js 2010-03-03 14:35:52 UTC (rev 1694)
+++ branches/ufltima/core.js 2010-03-04 14:35:45 UTC (rev 1695)
@@ -469,7 +469,7 @@
if (offset + count > this.length) { //offsetとcountの和が文字全体の長さを超える場合、offsetから最後までのを取り出す
count = this.length - offset;
}
- var s = this.data.substr(offset, count); //Stringのsubstrを用いて、count分の文字列を取り出す
+ var s = this.data.substr(offset, count);
return s;
};
/*void*/ CharacterData.prototype.appendData = function( /*string*/ arg) {
@@ -644,7 +644,7 @@
}
var nnode = this.ownerDocument.createTextNode(next);
if (this.parentNode) {
- this.parentNode.insertBefore(nnode, this.nextSibling); //親要素があれば、このノードの次の兄弟ノードとしてnnodeを入れる
+ this.parentNode.insertBefore(nnode, this.nextSibling);
}
return nnode;
};