Skip to content

Commit

Permalink
Fix for defect #158
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Apr 20, 2015
1 parent c65f6aa commit 22cee7e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,5 +383,4 @@
## [0.1.0](https://github.com/knsv/mermaid/tree/0.1.0) (2014-11-16)



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
3 changes: 3 additions & 0 deletions dist/mermaid.forest.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
.mermaid .label {
color: #333333;
}

body {width:800px;}

.node rect,
.node circle,
.node polygon {
Expand Down
4 changes: 3 additions & 1 deletion dist/mermaid.full.js
Original file line number Diff line number Diff line change
Expand Up @@ -31146,7 +31146,9 @@ module.exports.cloneCssStyles = function(svg, classes){
catch(err) {
if(typeof console !== 'undefined'){
if(console.warn !== 'undefined'){
console.warn('Invalid CSS selector "' + rule.selectorText + '"', err);
if(rule !== 'undefined'){
console.warn('Invalid CSS selector "' + rule.selectorText + '"', err);
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.full.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/mermaid.slim.js
Original file line number Diff line number Diff line change
Expand Up @@ -31114,7 +31114,9 @@ module.exports.cloneCssStyles = function(svg, classes){
catch(err) {
if(typeof console !== 'undefined'){
if(console.warn !== 'undefined'){
console.warn('Invalid CSS selector "' + rule.selectorText + '"', err);
if(rule !== 'undefined'){
console.warn('Invalid CSS selector "' + rule.selectorText + '"', err);
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/mermaid.slim.min.js

Large diffs are not rendered by default.

0 comments on commit 22cee7e

Please sign in to comment.