Skip to content

Commit

Permalink
Merge branch 'release/v1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
sklein94 committed Nov 16, 2020
2 parents e8ec588 + 5aa1b06 commit 2050948
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.0.4](https://github.com/cloudogu/warp-menu/releases/tag/v1.0.4)
### Fixed
- escape special characters like 'ö', 'ä', 'ü' (#15)

## [v1.0.3](https://github.com/cloudogu/warp-menu/releases/tag/v1.0.3)
### Fixed
- fix that the area around the menu button is not clickable
Expand Down
9 changes: 4 additions & 5 deletions src/warp.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ function getCategoryKey(category) {
function getTranslations(language) {
if (language === "de") {
return {
"aboutCloudoguToken": "Über Cloudogu",
"menuToken": "Menü",
"aboutCloudoguToken": "Über Cloudogu",
"menuToken": "Menü",
"ecosystemLogoutToken": "EcoSystem Logout",
"onboardingTextToken": "Klicken Sie auf 'Menü', um ihre Tools zu sehen. Das Menü verbindet ihre Toolchain und ist von jedem Tool aus zugänglich.",
"onboardingTextToken": "Klicken Sie auf 'Menü', um ihre Tools zu sehen. Das Menü verbindet ihre Toolchain und ist von jedem Tool aus zugänglich.",
"onboardingHintToken": "Hinweis nicht mehr anzeigen",
"Development Apps": "Entwicklung",
"Administration Apps": "Administration",
Expand Down Expand Up @@ -205,7 +205,7 @@ function addLogoutMenuEntry(list) {
var placeholder = document.createElement('li');
addClass(placeholder, 'warp-menu-logout-placeholder');
var placeholderChild = document.createElement('div');
placeholderChild.innerText = '\xa0';
placeholderChild.innerHTML = ' ';
placeholder.appendChild(placeholderChild);

var logout = document.createElement('li');
Expand Down Expand Up @@ -426,7 +426,6 @@ function loaded(menu) {
initWarpMenu(model);
}
}

if (!hasClass(body, 'warpmenu-push') && (self === top || window.pmaversion)) {

// load css
Expand Down

0 comments on commit 2050948

Please sign in to comment.