From b5cc76c4f5ce2aa985244d0bfd8248c71e305984 Mon Sep 17 00:00:00 2001 From: Rob Eisenberg Date: Thu, 26 Feb 2015 21:42:15 -0500 Subject: [PATCH] feat(Behaviour): make UK devs jump for joy Some developers from the UK would like to see Behavior aliased with Behaviour since they are used to typing it with a u. fixes #18 --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index 01aa04ba..49b7fc73 100644 --- a/src/index.js +++ b/src/index.js @@ -25,6 +25,7 @@ export {CompositionEngine} from './composition-engine'; export {Animator} from './animator'; export var Behavior = Metadata; +export var Behaviour = Metadata; Metadata.configure.classHelper('withProperty', BehaviorProperty); Metadata.configure.classHelper('withOptions', OptionsProperty);