summaryrefslogtreecommitdiff |
diff options
Diffstat (limited to 'src/roster-editor/src/View/GlyphSelection.elm')
-rw-r--r-- | src/roster-editor/src/View/GlyphSelection.elm | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/roster-editor/src/View/GlyphSelection.elm b/src/roster-editor/src/View/GlyphSelection.elm index 4ee62d0..6d3eca2 100644 --- a/src/roster-editor/src/View/GlyphSelection.elm +++ b/src/roster-editor/src/View/GlyphSelection.elm @@ -7,22 +7,20 @@ import Html import Html.Attributes import Html.Events --- Roster Editor --------------------------------------------------------------- +-- Battle ---------------------------------------------------------------------- +import Battle.View.Omnimods + +-- Local Module ---------------------------------------------------------------- import Struct.Event import Struct.Glyph -import Struct.Omnimods import Struct.Model -import View.Omnimods - -------------------------------------------------------------------------------- -- LOCAL ----------------------------------------------------------------------- -------------------------------------------------------------------------------- get_mod_html : (String, Int) -> (Html.Html Struct.Event.Type) get_mod_html mod = - let - (category, value) = mod - in + let (category, value) = mod in (Html.div [ (Html.Attributes.class "info-card-mod") @@ -48,7 +46,7 @@ get_glyph_html glyph = ] [ (Html.text (Struct.Glyph.get_name glyph)), - (View.Omnimods.get_html (Struct.Glyph.get_omnimods glyph)) + (Battle.View.Omnimods.get_html (Struct.Glyph.get_omnimods glyph)) ] ) |