Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thedannywahl committed Feb 21, 2019
1 parent e43c75d commit e823de2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Binary file removed dist/TinyMCE-sentimony-v1.0.0.zip
Binary file not shown.
Binary file added dist/TinyMCE-sentimony-v1.1.0.zip
Binary file not shown.
5 changes: 2 additions & 3 deletions dist/sentimony/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Langs.prototype.strings = {
if (data.comparative == 0) {
return "<p>Overall, readers might have a hard time understanding your\n sentiment because none of your words seem to have a feeling or\n emotion associated wiith them";
}
return "<p id=\"report-emoji\"><span class=\"emoji\" role=\"img\" aria-label=\"\">" + strength.html + "</span></p>\n <p>Overall, readers might see your sentiment as\n <span class=\"report-keyword\">" + strength.scale + "</span> " + sentiment + "\n because you used words like <span class=\"report-keyword\">" + data[sentiment][0] + "</span>\n " + (data[sentiment][1] ? "and <span class=\"report-keyword\">" + data[sentiment][1] + "</span>" : '') + "\n </p>";
return "<p id=\"report-emoji\"><span class=\"emoji\" role=\"img\" aria-label=\"\">" + strength.html + "</span></p>\n <p>Overall, readers might see your sentiment as\n <span class=\"report-keyword\">" + strength.scale + "</span>\n <span class=\"report-keyword\">" + sentiment + "</span>\n because you used words like <span class=\"report-keyword\">" + data[sentiment][0] + "</span>\n " + (data[sentiment][1] ? "and <span class=\"report-keyword\">" + data[sentiment][1] + "</span>" : '') + ".\n </p>";
}
}
};
Expand Down Expand Up @@ -258,7 +258,6 @@ var plugin = function plugin(editor) {
return n;
});
sentimony.setComparativeSentiment(globalData, _emotions2.default);
console.log(globalData);
});
});

Expand All @@ -268,7 +267,7 @@ var plugin = function plugin(editor) {
name: s.t(l, "title"),
url: "https://github.com/thedannywahl/sentimony/",
author: "Danny Wahl",
version: "1.0.0"
version: "1.1.0"
};
}
};
Expand Down
2 changes: 1 addition & 1 deletion dist/sentimony/plugin.min.js

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": "sentimony",
"version": "1.0.0",
"version": "1.1.0",
"description": "sentimony TinyMCE plugin repo",
"scripts": {
"start": "webpack-dev-server --config config/webpack.config.dev.js --progress --open --inline",
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const plugin = editor => {
name: s.t(l, "title"),
url: "https://github.com/thedannywahl/sentimony/",
author: "Danny Wahl",
version: "1.0.0"
version: "1.1.0"
}
}
}
Expand Down

0 comments on commit e823de2

Please sign in to comment.