Skip to content

Commit

Permalink
Update version to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Pulges committed Jun 2, 2014
1 parent 301179a commit f302b40
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 16 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.textile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*wysihtml5x 0.4.7* (June 2, 2014)
* Fixes mayor bug that prevents deleting some elements.

*wysihtml5x 0.4.6* (June 2, 2014)
* Added "hasVisibleContent" to parser check methods to clean up empty elements
* Added list indent and outdent commands
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wysihtml5x",
"version": "0.4.6",
"version": "0.4.7",
"main": [
"dist/wysihtml5x.min.js",
"dist/wysihtml5x-toolbar.min.js"
Expand Down
6 changes: 3 additions & 3 deletions dist/wysihtml5x-toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(!Array.isArray) {
return Object.prototype.toString.call(arg) === '[object Array]';
};
};/**
* @license wysihtml5x v0.4.6
* @license wysihtml5x v0.4.7
* https://github.com/Edicy/wysihtml5
*
* Author: Christopher Blum (https://github.com/tiff)
Expand All @@ -36,7 +36,7 @@ if(!Array.isArray) {
*
*/
var wysihtml5 = {
version: "0.4.6",
version: "0.4.7",

// namespaces
commands: {},
Expand Down Expand Up @@ -8598,7 +8598,7 @@ wysihtml5.quirks.ensureProperClearing = (function() {
node = selection.anchorNode,
offset = selection.anchorOffset;
if (ofNode) {
return (offset === 0 && (node.nodeName && node.nodeName === ofNode.toUpperCase() || wysihtml5.dom.getParentElement(node.parentNode, ofNode, 1)));
return (offset === 0 && (node.nodeName && node.nodeName === ofNode.toUpperCase() || wysihtml5.dom.getParentElement(node.parentNode, { nodeName: ofNode }, 1)));
} else {
return (offset === 0 && !this.getPreviousNode(node, true));
}
Expand Down
6 changes: 3 additions & 3 deletions dist/wysihtml5x-toolbar.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wysihtml5x-toolbar.min.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/wysihtml5x.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if(!Array.isArray) {
return Object.prototype.toString.call(arg) === '[object Array]';
};
};/**
* @license wysihtml5x v0.4.6
* @license wysihtml5x v0.4.7
* https://github.com/Edicy/wysihtml5
*
* Author: Christopher Blum (https://github.com/tiff)
Expand All @@ -36,7 +36,7 @@ if(!Array.isArray) {
*
*/
var wysihtml5 = {
version: "0.4.6",
version: "0.4.7",

// namespaces
commands: {},
Expand Down Expand Up @@ -8598,7 +8598,7 @@ wysihtml5.quirks.ensureProperClearing = (function() {
node = selection.anchorNode,
offset = selection.anchorOffset;
if (ofNode) {
return (offset === 0 && (node.nodeName && node.nodeName === ofNode.toUpperCase() || wysihtml5.dom.getParentElement(node.parentNode, ofNode, 1)));
return (offset === 0 && (node.nodeName && node.nodeName === ofNode.toUpperCase() || wysihtml5.dom.getParentElement(node.parentNode, { nodeName: ofNode }, 1)));
} else {
return (offset === 0 && !this.getPreviousNode(node, true));
}
Expand Down
6 changes: 3 additions & 3 deletions dist/wysihtml5x.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/wysihtml5x.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wysihtml5x",
"version": "0.4.6",
"version": "0.4.7",
"devDependencies": {
"grunt": "~0.4.4",
"grunt-contrib-jshint": "~0.6.3",
Expand Down

0 comments on commit f302b40

Please sign in to comment.