-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from KlausBenndorf/merger
Version update (includes updated requirements)
- Loading branch information
Showing
10 changed files
with
108 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
language: node_js | ||
node_js: | ||
- 'node' | ||
cache: | ||
directories: | ||
- travis_phantomjs | ||
- node_modules | ||
before_install: | ||
# Upgrade PhantomJS to v2.1.1 | ||
- "export PHANTOMJS_VERSION=2.1.1" | ||
- "export PATH=$PWD/travis_phantomjs/phantomjs-$PHANTOMJS_VERSION-linux-x86_64/bin:$PATH" | ||
- "if [ $(phantomjs --version) != $PHANTOMJS_VERSION ]; then rm -rf $PWD/travis_phantomjs; mkdir -p $PWD/travis_phantomjs; fi" | ||
- "if [ $(phantomjs --version) != $PHANTOMJS_VERSION ]; then wget https://github.com/Medium/phantomjs/releases/download/v$PHANTOMJS_VERSION/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 -O $PWD/travis_phantomjs/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2; fi" | ||
- "if [ $(phantomjs --version) != $PHANTOMJS_VERSION ]; then tar -xvf $PWD/travis_phantomjs/phantomjs-$PHANTOMJS_VERSION-linux-x86_64.tar.bz2 -C $PWD/travis_phantomjs; fi" | ||
- "phantomjs --version" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// As the webpack loader's exec method is broken we need to do plain ES5 here | ||
|
||
var merge = require('lodash/merge') | ||
|
||
module.exports = merge(require('guide4you/files/helptext.json.js'), { | ||
"de": { | ||
"searchControl": { | ||
"img": [ | ||
"search-inactive-de.png", | ||
"search-active.png" | ||
], | ||
"joinWith": "<br> <br>", | ||
"descr": [ | ||
"Mit diesem Element suchen Sie nach Adressen, Orten, und Ähnlichem. Tippen Sie den Such­begriff in das Such­feld ein.", | ||
"Wählen Sie mit der Maus oder den Pfeil­tasten aus den angezeigten Vorschlägen aus oder geben Sie den Such­begriff vollständig ein. Führen Sie die Suche aus, indem Sie die Enter-Taste betätigen oder auf das Lupen­symbol klicken.", | ||
"Die obere Abbildung zeigt die Suche im inaktiven Zustand, die untere mit Vorschlägen." | ||
] | ||
} | ||
}, | ||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// | ||
"en": { | ||
"searchControl": { | ||
"img": [ | ||
"search-inactive-en.png", | ||
"search-active.png" | ||
], | ||
"joinWith": "<br> <br>", | ||
"descr": [ | ||
"Use this element to search for addresses, places and the like.", | ||
"Type a search term into the search field. Choose among the suggestions using the mouse or the arrow buttons or enter the full search term. Execute the search by pressing the Enter button or clicking the magnifying glass symbol.", | ||
"The upper image shows the search in inactive state, the lower image with suggestions being displayed." | ||
] | ||
} | ||
} | ||
}) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters