diff options
Diffstat (limited to 'html/script.js')
| -rw-r--r-- | html/script.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/html/script.js b/html/script.js index d97fcc4..51c43c0 100644 --- a/html/script.js +++ b/html/script.js @@ -4,7 +4,12 @@ function getRegions() { return [ "euw", "na", "kr", "br" ]; } function getChampions() { - return [ {name: "Aatrox"}, {name: "Annie"}, {name: "Braum"} ]; + return [ {name: "Aatrox"}, {name: "Annie"}, {name: "Braum"}, {name: "Not"} ]; +} +function getMatchProps() { + return [] +} +function getMatches() { } function getInfo() { app.summoner = $("#nameinput").val(); @@ -35,6 +40,8 @@ var app = new Vue({ view: "start", regions: getRegions(), champions: getChampions(), + matchprops: getMatchProps(), + matches: getMatches(), }, methods: { submit: function() { |
