Skip to content

Commit 0fb611e

Browse files
committed
Merge branch 'interface-changes-css' into interface-changes-export-new
2 parents 7b05e12 + 042d13e commit 0fb611e

96 files changed

Lines changed: 2830 additions & 2504 deletions

File tree

Some content is hidden

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

.babelrc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
{
2-
"presets": [
3-
"@babel/preset-react",
4-
"@babel/preset-env"
2+
"presets": ["@babel/preset-react", "@babel/preset-env"],
3+
"plugins": [
4+
[
5+
"@babel/plugin-transform-runtime",
6+
{
7+
"regenerator": true
8+
}
59
]
6-
}
10+
]
11+
}

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## 2022-03-28
4+
5+
### Changes
6+
7+
- Streamgraph CSS changes: rounded buttons, heading color.
8+
- Default timespan date in GoTriple.
9+
10+
## 2022-03-17
11+
12+
### Deprecations
13+
14+
- Unsupported browser warning is now displayed also in Opera and Edge (the only supported browsers are Chrome, Firefox and Safari).
15+
16+
### Internal
17+
18+
- Refactored remaining old code.
19+
20+
## 2022-03-03
21+
22+
### Security
23+
24+
- Routine npm security update
25+
26+
## 2022-02-17
27+
28+
### Changes
29+
30+
- disabled the cite paper feature in main integration
31+
- enabled the cite paper feature in Triple
32+
333
## 2022-01-31
434

535
### New features

examples/project_website/base.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@
8787
<script>
8888
data_config.files = [{
8989
//title: "digital education",
90-
title: "calcium",
90+
//title: "calcium",
91+
title: "production",
9192
//file: "./data/digital-education.json"
92-
file: "./data/calcium.json"
93+
//file: "./data/calcium.json",
94+
file: "./data/production.json"
9395
}]
9496
data_config.server_url = window.location.href.replace(/[^/]*$/, '') + "./headstart/server/";
9597
</script>

examples/project_website/data-config_base.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var data_config = {
2828
context_most_relevant_tooltip: true,
2929

3030
embed_modal: true,
31-
share_modal: true,
31+
share_modal: false,
3232

3333
doi_outlink: true,
3434
filter_menu_dropdown: true,
@@ -46,4 +46,7 @@ var data_config = {
4646

4747
highlight_query_terms: true,
4848
show_context_oa_number: false,
49+
50+
show_twitter_button: true,
51+
show_email_button: true,
4952
};

examples/project_website/data/production.json

Lines changed: 10 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)