Skip to content

Commit

Permalink
Changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
troex committed Mar 29, 2010
1 parent 4eae7df commit 98dce39
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2010-03-29 Dmitry Levashov <dio@std42.ru>

* elRTE (1.0rc4):
- [feature] better display image margin attributes
- [feature] new button "CSS" for class and style set
- [bugfix] better XHTML support
- [bugfix] more unused tags/attributes cleanup and replace
- [bugfix] restore selection after undo/redo
- [bugfix] links add/remove problem
- [bugfix] IE source window height


2010-03-15 Troex Nevelin <troex@fury.scancode.ru>

* elRTE (1.0rc3):
Expand Down
4 changes: 2 additions & 2 deletions src/elrte/js/elRTE.DOM.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ elRTE.prototype.dom = function(rte) {
this.createBookmark = function() {
var b = this.rte.doc.createElement('span');
b.id = 'elrte-bm-'+Math.random().toString().substr(2);
$(b).addClass('elrtebm')//.text('bm');
$(b).addClass('elrtebm');
return b;
}

Expand Down Expand Up @@ -650,4 +650,4 @@ elRTE.prototype.dom = function(rte) {
}
}

})(jQuery);
})(jQuery);

0 comments on commit 98dce39

Please sign in to comment.