Skip to content

Commit

Permalink
Move the MIDIComponent to the Components directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
eelco committed Jul 4, 2016
1 parent ff8a671 commit 6af1b8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
@@ -1,7 +1,7 @@
{_} = require "./Underscore"
{BaseClass} = require "./BaseClass"
{Events} = require "./Events"
{MIDIInput} = require "./MIDIInput"
{_} = require "../Underscore"
{BaseClass} = require "../BaseClass"
{Events} = require "../Events"
{MIDIInput} = require "../MIDIInput"

Events.MIDIComponentValueChange = "MIDIComponentValueChange"

Expand Down
2 changes: 1 addition & 1 deletion framer/Framer.coffee
Expand Up @@ -16,7 +16,6 @@ Framer.Animation = (require "./Animation").Animation
Framer.AnimationGroup = (require "./AnimationGroup").AnimationGroup
Framer.Screen = (require "./Screen").Screen
Framer.Align = (require "./Align").Align
Framer.MIDIComponent = (require "./MIDIComponent").MIDIComponent
Framer.print = (require "./Print").print

# Components
Expand All @@ -27,6 +26,7 @@ Framer.DeviceComponent = (require "./Components/DeviceComponent").DeviceComponen
Framer.GridComponent = (require "./Components/GridComponent").GridComponent
Framer.NavComponent = (require "./Components/NavComponent").NavComponent
Framer.CircularProgressComponent = (require "./Components/CircularProgressComponent").CircularProgressComponent
Framer.MIDIComponent = (require "./Components/MIDIComponent").MIDIComponent
Framer.DeviceView = Framer.DeviceComponent # Compat

_.extend(window, Framer) if window
Expand Down

0 comments on commit 6af1b8d

Please sign in to comment.