Skip to content

Instantly share code, notes, and snippets.

View teppix's full-sized avatar

Ola Sikström teppix

  • SAVR AB
  • Oskarström, Sweden
View GitHub Profile
@simonh1000
simonh1000 / DragTable.elm
Last active June 29, 2017 12:53
Draggable table
module DragTable exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Json.Decode as Json exposing (Decoder, Value)
import Dict exposing (Dict)
import List as L exposing (drop, take)
import Tuple