Upgrade everything to 0.18

This commit is contained in:
Richard Feldman
2016-12-11 15:07:00 -08:00
parent 80dbde12b4
commit 7fc5118626
24 changed files with 69 additions and 84 deletions

View File

@@ -3,7 +3,6 @@ port module ElmHub exposing (..)
import Html exposing (..)
import Html.Attributes exposing (class, target, href, defaultValue, type_, checked, placeholder, value)
import Html.Events exposing (..)
import Html.App as Html
import Html.Lazy exposing (lazy, lazy3)
import Auth
import Json.Decode exposing (Decoder)

View File

@@ -1,10 +1,10 @@
module Main exposing (main)
import ElmHub
import Html.App as Html
import Html
main : Program Never
main : Program Never ElmHub.Model ElmHub.Msg
main =
Html.program
{ view = ElmHub.view

View File

@@ -3,7 +3,6 @@ port module Stylesheets exposing (..)
import Css.File exposing (..)
import ElmHubCss
import Html exposing (div)
import Html.App as Html
port files : CssFileStructure -> Cmd msg
@@ -14,7 +13,7 @@ cssFiles =
toFileStructure [ ( "style.css", compile [ ElmHubCss.css ] ) ]
main : Program Never
main : Program Never Model Msg
main =
Html.program
{ init = ( (), files cssFiles )