Skip to content

Commit

Permalink
Update version to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Pulges committed Jan 28, 2014
1 parent e3d9aa4 commit 412e1c6
Show file tree
Hide file tree
Showing 4 changed files with 2,481 additions and 2,178 deletions.
2 changes: 1 addition & 1 deletion lib/wysihtml5x/rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Wysihtml5x
module Rails
VERSION = "0.4.0"
VERSION = "0.4.1"
end
end
7 changes: 5 additions & 2 deletions vendor/assets/javascripts/parser_rules/advanced_unwrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ var wysihtml5ParserRules = {
* - href: allows something like "mailto:[email protected]", "http://google.com", "/foobar.jpg"
* - alt: strips unwanted characters. if the attribute is not set, then it gets set (to ensure valid and compatible HTML)
* - numbers: ensures that the attribute only contains numeric characters
* - any: allows anything to pass
*/
"tags": {
"tr": {
Expand Down Expand Up @@ -323,7 +324,9 @@ var wysihtml5ParserRules = {
"td": {
"check_attributes": {
"rowspan": "numbers",
"colspan": "numbers"
"colspan": "numbers",
"valign": "any",
"align": "any"
},
"add_class": {
"align": "align_text"
Expand Down Expand Up @@ -646,4 +649,4 @@ var wysihtml5ParserRules = {
"rename_tag": "div"
}
}
};
};
Loading

0 comments on commit 412e1c6

Please sign in to comment.