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

Configure Feed

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

Mobile fixes

+16 -5
+10 -1
src/Applications/UI/Equalizer.elm
··· 12 12 import Html.Styled exposing (Html, text) 13 13 import Html.Styled.Attributes exposing (css, style) 14 14 import Html.Styled.Events 15 + import Json.Decode as Decode 15 16 import Material.Icons.Navigation as Icons 16 17 import Return3 as Return exposing (..) 17 18 import Svg.Styled exposing (Svg, polygon, svg) ··· 294 295 295 296 _ -> 296 297 value * maxAngle 298 + 299 + resetDecoder = 300 + Decode.succeed 301 + { message = ResetKnob knobType 302 + , stopPropagation = True 303 + , preventDefault = True 304 + } 297 305 in 298 306 brick 299 307 [ css knobStyles ··· 304 312 |> style "transform" 305 313 306 314 -- 307 - , Html.Styled.Events.onDoubleClick (ResetKnob knobType) 315 + , Html.Styled.Events.custom "dblclick" resetDecoder 316 + , Html.Styled.Events.custom "dbltap" resetDecoder 308 317 309 318 -- 310 319 , knobType
+3 -1
src/Applications/UI/List.elm
··· 173 173 if dragTarget then 174 174 List.append 175 175 itemBaseStyles 176 - [ Css.borderTop3 (px 1) solid (Color.toElmCssColor UI.Kit.colorKit.accent) ] 176 + [ Css.borderTop3 (px 1) solid (Color.toElmCssColor UI.Kit.colorKit.accent) 177 + , Css.touchAction Css.none 178 + ] 177 179 178 180 else 179 181 itemBaseStyles
+1 -1
src/Applications/UI/Settings.elm
··· 48 48 ----------------------------------------- 49 49 UI.Navigation.local 50 50 [ ( Icon Icons.import_export 51 - , Label "Import / Export" Shown 51 + , Label "Import & Export" Shown 52 52 , NavigateToPage (Page.Settings ImportExport) 53 53 ) 54 54 , ( Icon Icons.exit_to_app
+1 -1
src/Applications/UI/Settings/ImportExport.elm
··· 33 33 -- Content 34 34 ----------------------------------------- 35 35 , UI.Kit.canister 36 - [ UI.Kit.h1 "Import / Export" 36 + [ UI.Kit.h1 "Import & Export" 37 37 38 38 -- Intro 39 39 --------
+1 -1
src/Javascript/index.js
··· 221 221 // ------------ 222 222 223 223 tocca({ 224 - dbltapThreshold: 600 224 + dbltapThreshold: 800 225 225 }) 226 226 227 227