Skip to content

Commit

Permalink
Support for cyrillic characters
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Dec 1, 2014
1 parent 9537f60 commit 1502346
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mermaid",
"version": "0.2.9",
"version": "0.2.10",
"authors": [
"knsv <knut@sveido.com>"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.full.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/mermaid.full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/mermaid.slim.js
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ exports.tester = function(){};
* @returns {string}
*/
exports.version = function(){
return '0.2.9';
return '0.2.10';
};

var equals = function (val, variable){
Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.slim.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ exports.tester = function(){};
* @returns {string}
*/
exports.version = function(){
return '0.2.9';
return '0.2.10';
};

var equals = function (val, variable){
Expand Down
2 changes: 1 addition & 1 deletion src/main.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('when using main and ',function() {
div = document.createElement('div');
mermaid_config ={startOnLoad : false};
main = rewire('./main');
expect(main.version()).toBe('0.2.9');
expect(main.version()).toBe('0.2.10');
});
it('should not call start anything with an empty document', function () {

Expand Down

0 comments on commit 1502346

Please sign in to comment.