chore(modeling): renamve behaviors for clarity

This commit is contained in:
Nico Rehwaldt 2015-03-23 15:14:54 +01:00
parent 8eff06fb0c
commit 695a973e92
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
module.exports = {
__init__: [ 'dropBehavior', 'appendBehavior' ],
dropBehavior: [ 'type', require('./Drop') ],
appendBehavior: [ 'type', require('./Append') ]
__init__: [ 'appendBehavior', 'dropBehavior' ],
appendBehavior: [ 'type', require('./AppendBehavior') ],
dropBehavior: [ 'type', require('./DropBehavior') ]
};