mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
Support for cyrillic characters
This commit is contained in:
parent
9537f60b01
commit
1502346172
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mermaid",
|
"name": "mermaid",
|
||||||
"version": "0.2.9",
|
"version": "0.2.10",
|
||||||
"authors": [
|
"authors": [
|
||||||
"knsv <knut@sveido.com>"
|
"knsv <knut@sveido.com>"
|
||||||
],
|
],
|
||||||
|
2
dist/mermaid.full.js
vendored
2
dist/mermaid.full.js
vendored
@ -966,7 +966,7 @@ exports.tester = function(){};
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
exports.version = function(){
|
exports.version = function(){
|
||||||
return '0.2.9';
|
return '0.2.10';
|
||||||
};
|
};
|
||||||
|
|
||||||
var equals = function (val, variable){
|
var equals = function (val, variable){
|
||||||
|
2
dist/mermaid.full.min.js
vendored
2
dist/mermaid.full.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/mermaid.slim.js
vendored
2
dist/mermaid.slim.js
vendored
@ -934,7 +934,7 @@ exports.tester = function(){};
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
exports.version = function(){
|
exports.version = function(){
|
||||||
return '0.2.9';
|
return '0.2.10';
|
||||||
};
|
};
|
||||||
|
|
||||||
var equals = function (val, variable){
|
var equals = function (val, variable){
|
||||||
|
2
dist/mermaid.slim.min.js
vendored
2
dist/mermaid.slim.min.js
vendored
File diff suppressed because one or more lines are too long
@ -304,7 +304,7 @@ exports.tester = function(){};
|
|||||||
* @returns {string}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
exports.version = function(){
|
exports.version = function(){
|
||||||
return '0.2.9';
|
return '0.2.10';
|
||||||
};
|
};
|
||||||
|
|
||||||
var equals = function (val, variable){
|
var equals = function (val, variable){
|
||||||
|
@ -23,7 +23,7 @@ describe('when using main and ',function() {
|
|||||||
div = document.createElement('div');
|
div = document.createElement('div');
|
||||||
mermaid_config ={startOnLoad : false};
|
mermaid_config ={startOnLoad : false};
|
||||||
main = rewire('./main');
|
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 () {
|
it('should not call start anything with an empty document', function () {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user