This file contains hidden or 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
$(document).ready(function() { | |
tooltipdiv = d3.select("body") | |
.append("div") | |
.attr("class", "tooltip"); | |
function mousemove(text, text2){ | |
tooltipdiv | |
.style("visibility", "visible") | |
.style("opacity", 1) | |
.style("top", d3.event.pageY+15 + "px") |
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 hidden or 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
# -*- coding: UTF-8 -*- | |
# Patricia Ennenbach - 15-12-21 - Wichteln | |
# Aufgaben: | |
# - Jedes Kind soll einem Kind etwas schenken | |
# - Kinder sollen sich nicht selbst beschenken | |
# - Kinder sollen nicht ihre Geschwister beschenken | |
# - Jedes Kind soll nur einmal beschenkt werden | |
# Mein Problem: | |
# Wenn z.B "Kind == Wichtel" ist, müsste für dieses Kind ein neuer Wichtel gesucht werden, mein Weg "kinder.append(kind)" ist aber nicht ideal. |
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 hidden or 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
{ | |
"dependencies": { | |
"i18next": "^19.8.4", | |
"i18next-browser-languagedetector": "^6.0.1", | |
"i18next-http-backend": "^1.0.21", | |
"react-i18next": "^11.7.3" | |
}, | |
"devDependencies": { | |
"eslint-plugin-jsx-a11y": "^6.3.1", | |
"i18next-parser": "^3.3.0" |
OlderNewer