Support for cyrillic characters

This commit is contained in:
knsv 2014-12-01 21:12:14 +01:00
parent 9537f60b01
commit 1502346172
7 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
{
"name": "mermaid",
"version": "0.2.9",
"version": "0.2.10",
"authors": [
"knsv <knut@sveido.com>"
],

View File

@ -966,7 +966,7 @@ exports.tester = function(){};
* @returns {string}
*/
exports.version = function(){
return '0.2.9';
return '0.2.10';
};
var equals = function (val, variable){

File diff suppressed because one or more lines are too long

View File

@ -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){

File diff suppressed because one or more lines are too long

View File

@ -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){

View File

@ -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 () {