mirror of
https://github.com/correl/elm-mdl.git
synced 2024-12-18 03:00:11 +00:00
Removed dead code.
This commit is contained in:
parent
ed12ecf8e8
commit
bba58eed2c
3 changed files with 1 additions and 26 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,3 +2,4 @@ elm-stuff
|
|||
.*.sw?
|
||||
elm.js
|
||||
index.html
|
||||
docs.json
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
module Card
|
||||
{-}
|
||||
(
|
||||
|
||||
)-} where
|
||||
|
||||
type Shadow
|
||||
= None
|
||||
| Foo
|
||||
{-}
|
||||
card shadow attr elem =
|
||||
div
|
||||
(class "")
|
||||
-}
|
|
@ -1,12 +0,0 @@
|
|||
module Material.Infix where
|
||||
|
||||
import Maybe
|
||||
|
||||
(|?>): Maybe a -> (a -> b) -> Maybe b
|
||||
(|?>) x f = Maybe.map f x
|
||||
|
||||
(|??>) : Maybe a -> (a -> Maybe b) -> Maybe b
|
||||
(|??>) = Maybe.andThen
|
||||
|
||||
(|?) : Maybe a -> a -> a
|
||||
(|?) x y = Maybe.withDefault y x
|
Loading…
Reference in a new issue