1
0
Fork 0

Minor code cleanups.

This commit is contained in:
Nicolas Perriault 2017-04-25 12:18:24 +02:00
parent 09b52a2c7f
commit 4385aed0a2
No known key found for this signature in database
GPG Key ID: DA5E4C83904F7A2A
1 changed files with 6 additions and 7 deletions

View File

@ -9,8 +9,8 @@ import Mastodon
import Model exposing (Model, Draft, DraftMsg(..), Viewer, ViewerMsg(..), Msg(..))
import ViewHelper
import Date
import Date.Extra.Config.Config_en_au exposing (config)
import Date.Extra.Format as Format exposing (format)
import Date.Extra.Config.Config_en_au as DateEn
import Date.Extra.Format as DateFormat
visibilities : Dict.Dict String String
@ -153,10 +153,9 @@ statusView ({ account, content, media_attachments, reblog, mentions } as status)
let
accountLinkAttributes =
[ href account.url
-- When clicking on a status, we should not let the browser
-- redirect to a new page. That's why we're preventing the default
-- behavior here
-- When clicking on a status, we should not let the browser
-- redirect to a new page. That's why we're preventing the default
-- behavior here
, ViewHelper.onClickWithPreventAndStop (OnLoadUserAccount account.id)
]
in
@ -267,7 +266,7 @@ statusActionsView status =
|> Result.withDefault (Date.fromTime 0)
formatDate =
text <| format config "%m/%d/%Y %H:%M" tootDate
text <| DateFormat.format DateEn.config "%m/%d/%Y %H:%M" tootDate
in
div [ class "btn-group actions" ]
[ a