summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMitchell Pijl <m.pijl@student.tue.nl>2015-04-08 12:22:27 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-04-08 12:22:27 +0200
commit9a391e2a5a72b7e06d5b971836d9d36e4654cdf9 (patch)
treea197c70c833e8d697f23bac660c0ed971e06514f /js
parent126f66d112ea63acb2478321a468f77cf2a1fa1e (diff)
downloadsite-9a391e2a5a72b7e06d5b971836d9d36e4654cdf9.tar.gz
Linkify stuff, fix headings
Diffstat (limited to 'js')
-rw-r--r--js/campus-coords.js8
-rw-r--r--js/campus.js2
2 files changed, 5 insertions, 5 deletions
diff --git a/js/campus-coords.js b/js/campus-coords.js
index a7aa618..3654a56 100644
--- a/js/campus-coords.js
+++ b/js/campus-coords.js
@@ -2,8 +2,8 @@ define(function() {
'use strict';
return [
{
- "name": "Sportpark",
- "description": "Have you ever heard about bossaball, underwater hockey, canoepolo or kempo jitsu? Besides all educational optionalities on the campus, there’s also the Student Sports Centre (SSC) which offers an extensive variety of sports for you to try out and practice, all in order to keep the TU/e-students wholesome. With 70 kinds of sports, special courses, a broad range of facilities, doors that are open 7 days per week, qualified sports instructors, 38 student sports associations and over 11000 members, the SSC is among the largest student collectives in Eindhoven.",
+ "name": "Students Sports Centre",
+ "description": "Have you ever heard about bossaball, underwater hockey, canoepolo or kempo jitsu? Besides all educational optionalities on the campus, there’s also the <a href=\"\http://venus.tue.nl/sci-cgi/index.opl\"\>Student Sports Centre</a> (SSC) which offers an extensive variety of sports for you to try out and practice, all in order to keep the TU/e-students wholesome. With 70 kinds of sports, special courses, a broad range of facilities, doors that are open 7 days per week, qualified sports instructors, 38 student sports associations and over 11000 members, the SSC is among the largest student collectives in Eindhoven.",
"coords": [
[355,134],
[355,221],
@@ -23,7 +23,7 @@ define(function() {
]
}, {
"name": "Metaforum",
- "description": "The Metaforum is the place on the campus where you can work on your assignments or do your homework. There are multiple facilities located in the metaforum which are present to facilitate your study at the TU/e. The library is located there with a broad selection of literature to get you going on your assignments. If you want something to be printed, then this is also possible in the printshop of the Metaforum. Whenever something’s wrong with your notebook or there is something that you want explained about your notebook and its uses then the laptop service centre in the Metaforum is your place to be.\nThe Metaforum is built in such a way that both the students that want to work silently and the students that have to do group assignments can work in the same building. It’s designed in such a way that the building consists of three layers while the lower layers will not be bothered with the sound that’s produced on the top layer. So every student, no matter what his intention at the Metaforum is, will have a place to work effectively on his or her study.",
+ "description": "The Metaforum is the place on the campus where you can work on your assignments or do your homework. There are multiple facilities located in the metaforum which are present to facilitate your study at the TU/e. The library is located there with a broad selection of literature to get you going on your assignments. If you want something to be printed, then this is also possible in the printshop of the Metaforum. Whenever something is wrong with your <a href=\"#/studying/Laptops\"\>notebook</a> or there is something that you want explained about your notebook and its uses then the laptop service centre in the Metaforum is your place to be.\nThe Metaforum is built in such a way that both the students that want to work silently and the students that have to do group assignments can work in the same building. It is designed in such a way that the building consists of three layers while the lower layers will not be bothered with the sound that’s produced on the top layer. So every student, no matter what his intention at the Metaforum is, will have a place to work effectively on his or her study.",
"coords": [
[453,492],
[512,492],
@@ -54,7 +54,7 @@ define(function() {
[329,496],
]
}, {
- "name": "Hoofdgebouw",
+ "name": "Main Building",
"description": "The main building of the TU/e is under construction at the moment. In 2018 it will open again. After the renovation the building will be more sustainable and will have a technological visual appeal. Mostly it will be used by test labs, but it will also contain two faculties of the TU/e.",
"coords": [
[400,454],
diff --git a/js/campus.js b/js/campus.js
index 7eae60a..234e1b9 100644
--- a/js/campus.js
+++ b/js/campus.js
@@ -58,7 +58,7 @@ define(['campus-coords', 'd3'], function(coords, d3) {
citems.appendChild(header);
var text_block = document.createElement('p');
- text_block.textContent = building.description;
+ text_block.innerHTML = building.description;
citems.appendChild(text_block);
var links_block = document.createElement('p');