Skip to content

Commit ab3ca69

Browse files
committed
yFiles for HTML 2.4 demos
1 parent d518d38 commit ab3ca69

File tree

2,279 files changed

+890485
-228732
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,279 files changed

+890485
-228732
lines changed

demos/.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ insert_final_newline = true
99
end_of_line = crlf
1010
max_line_length = 120
1111

12-
[*.{js,json}]
12+
[*.{js,json,ts}]
1313
max_line_length = 100

demos/.prettierignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
**/dist/
33
**/*.html
44
**/*.md
5-
view/largegraphs/resources/*.json
5+
/starter-kits/**
6+
/03-tutorial-application-features/webgl-rendering/resources/*.json
7+
/internal/webgl-performance-tests/resources/*.json
8+
/view/large-graphs/resources/*.json
9+
/view/rendering-optimizations/resources/*.json

demos/01-tutorial-getting-started/01-graphcomponent/SampleApplication.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

demos/01-tutorial-getting-started/01-graphcomponent/SampleApplication.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

demos/01-tutorial-getting-started/01-graphcomponent/index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@@ -8,7 +8,7 @@
88

99
<!-- ////////////////////////////////////////////////////////////////////////
1010
// @license
11-
// This demo file is part of yFiles for HTML 2.3.
11+
// This demo file is part of yFiles for HTML 2.4.
1212
// Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
1313
// 72070 Tuebingen, Germany. All rights reserved.
1414
//
@@ -36,7 +36,6 @@
3636
////////////////////////////////////////////////////////////////////////-->
3737

3838
<title>Creating the View - Getting Started Tutorial [yFiles for HTML]</title>
39-
<link type="text/css" rel="stylesheet" href="../../node_modules/yfiles/yfiles.css">
4039

4140
<style>
4241
html {

demos/01-tutorial-getting-started/02-graph-element-creation/SampleApplication.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

demos/01-tutorial-getting-started/02-graph-element-creation/SampleApplication.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

demos/01-tutorial-getting-started/02-graph-element-creation/index.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
77

88
<!-- ////////////////////////////////////////////////////////////////////////
99
// @license
10-
// This demo file is part of yFiles for HTML 2.3.
10+
// This demo file is part of yFiles for HTML 2.4.
1111
// Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
1212
// 72070 Tuebingen, Germany. All rights reserved.
1313
//
@@ -36,7 +36,6 @@
3636

3737
<title>Creating Graph Elements - Getting Started Tutorial [yFiles for HTML]</title>
3838

39-
<link rel="stylesheet" href="../../node_modules/yfiles/yfiles.css">
4039
<link rel="stylesheet" href="../../resources/style/demo.css">
4140

4241
<script src="../../resources/filesystem-warning.js"></script></head>

demos/01-tutorial-getting-started/03-managing-viewport/SampleApplication.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

demos/01-tutorial-getting-started/03-managing-viewport/SampleApplication.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/****************************************************************************
22
** @license
3-
** This demo file is part of yFiles for HTML 2.3.
3+
** This demo file is part of yFiles for HTML 2.4.
44
** Copyright (c) 2000-2021 by yWorks GmbH, Vor dem Kreuzberg 28,
55
** 72070 Tuebingen, Germany. All rights reserved.
66
**

0 commit comments

Comments
 (0)