From c68a2fa2eba2e434a15a163d5ab5803a17ba82fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Debois?= Date: Tue, 15 Mar 2016 17:46:04 +0100 Subject: [PATCH] Changed links in demo --- README.md | 3 +++ examples/Demo.elm | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 96c4ca0..0ec1aa3 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,9 @@ Port of Google's CSS/JS implementation of the [Material Design Specification](https://www.google.com/design/spec/material-design/introduction.html). +Live demo +[here](https://debois.github.io/elm-mdl/). + MDL is implemented primarily through CSS, with a little bit of Javascript adding and removing CSS classes in response to DOM events. This port re-implements the CSS parts in Elm, but relies on the CSS of MDL verbatim. diff --git a/examples/Demo.elm b/examples/Demo.elm index 3fedec5..7ba3805 100644 --- a/examples/Demo.elm +++ b/examples/Demo.elm @@ -83,11 +83,11 @@ drawer = [ Layout.title "Example drawer" , Layout.navigation [ Layout.link - [href "https://groups.google.com/forum/#!forum/elm-discuss"] - [text "Elm Discuss"] + [href "https://github.com/debois/elm-mdl"] + [text "github"] , Layout.link - [href "http://elm-lang.org"] - [text "Elm"] + [href "http://package.elm-lang.org/packages/debois/elm-mdl/1.0.0/"] + [text "elm-package"] ] ]