Luka Vandervelden
f4f043f4e1
A .visible-on-hover class has also been added, although it isn’t very flexible at the moment.
17 lines
179 B
Plaintext
17 lines
179 B
Plaintext
|
|
UUID = require "uuid/v4"
|
|
|
|
Column = (title, args) ->
|
|
self = {
|
|
title: title
|
|
id: UUID!
|
|
}
|
|
|
|
for key, value of (args || {})
|
|
self[key] = value
|
|
|
|
self
|
|
|
|
module.exports = Column
|
|
|