diff --git a/cypress/platform/current.html b/cypress/platform/current.html
index 6bcf91507..7bfa3ab8d 100644
--- a/cypress/platform/current.html
+++ b/cypress/platform/current.html
@@ -40,22 +40,15 @@
G-->c
-stateDiagram-v2
- [*] --> First
+flowchart LR
+ A{{A}}-->B{{B}};
+ click A callback "Tooltip"
+ click B "http://www.github.com" "This is a link"
- state First {
- [*] --> Second
-
- state Second {
- [*] --> second
- second --> Third
-
- state Third {
- [*] --> third
- third --> [*]
- }
- }
- }
+
+
+flowchart LR
+ A{{A}}-->B{{B}};
@@ -277,8 +270,9 @@ stateDiagram-v2
// sequenceDiagram: { actorMargin: 300 } // deprecated
fontFamily: '"arial", sans-serif',
curve: 'linear',
+ securityLevel: 'loose'
});
-
+ function callback(){alert('It worked');}