From 7254b601bd7a577fc244c45b35e0364a40166dbb Mon Sep 17 00:00:00 2001
From: Patrick Schönberger
Date: Mon, 10 Dec 2018 19:02:28 +0100
Subject: changes
---
html/index.html | 7 +++----
html/script.js | 5 ++++-
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/html/index.html b/html/index.html
index 77e22c3..8346529 100644
--- a/html/index.html
+++ b/html/index.html
@@ -2,7 +2,7 @@
- lol stats
+ Advanced League of Legends Match History & Statistics
@@ -31,11 +31,10 @@
-
Champion:
diff --git a/html/script.js b/html/script.js
index 8db21f9..92be426 100644
--- a/html/script.js
+++ b/html/script.js
@@ -3,7 +3,9 @@
function getRegions() {
return [ "euw", "na", "kr", "br" ];
}
-
+function getChampions() {
+ return [ "Aatrox", "Annie", "Braum" ];
+}
function getInfo() {
app.summoner = $("#nameinput").val();
app.region = $("#regionselect").val();
@@ -32,6 +34,7 @@ var app = new Vue({
region: "",
view: "start",
regions: getRegions(),
+ champions: getChampions(),
},
methods: {
submit: function() {
--
cgit v1.2.3