A music player that connects to your cloud/distributed storage.
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Closes #385

+9 -2
+4 -1
src/Applications/UI/Alfred/View.elm
··· 5 5 import Color exposing (Color) 6 6 import Conditional exposing (ifThenElse) 7 7 import Html exposing (Html, text) 8 - import Html.Attributes exposing (autofocus, id, placeholder, style, type_) 8 + import Html.Attributes exposing (attribute, autofocus, id, placeholder, style, type_) 9 9 import Html.Events exposing (onInput) 10 10 import Html.Ext exposing (onTapPreventDefault) 11 11 import Json.Decode ··· 82 82 , id "diffuse__alfred" 83 83 , onInput UI.GotAlfredInput 84 84 , type_ "text" 85 + 86 + -- 87 + , attribute "spellcheck" "false" 85 88 86 89 -- 87 90 , case instance.operation of
+4 -1
src/Applications/UI/Sources/Form.elm
··· 5 5 import Conditional exposing (..) 6 6 import Dict.Ext as Dict 7 7 import Html exposing (Html, text) 8 - import Html.Attributes as A exposing (for, name, placeholder, required, selected, type_, value) 8 + import Html.Attributes as A exposing (attribute, for, name, placeholder, required, selected, type_, value) 9 9 import Html.Events exposing (onInput, onSubmit) 10 10 import List.Extra as List 11 11 import Material.Icons.Round as Icons ··· 404 404 , required (property.label |> String.toLower |> String.contains "optional" |> not) 405 405 , type_ (ifThenElse property.password "password" "text") 406 406 , value (Dict.fetch property.key "" context.data) 407 + 408 + -- 409 + , attribute "spellcheck" "false" 407 410 ] 408 411 ] 409 412
+1
src/Applications/UI/Tracks/View.elm
··· 183 183 Html.input 184 184 [ attribute "autocorrect" "off" 185 185 , attribute "autocapitalize" "none" 186 + , attribute "spellcheck" "false" 186 187 , onInput (TracksMsg << SetSearchTerm) 187 188 , placeholder "Search" 188 189 , tabindex tabindex_