Skip to content

Instantly share code, notes, and snippets.

@sccolbert
Last active September 11, 2015 20:39
Show Gist options
  • Save sccolbert/be398b8e1dce5735e935 to your computer and use it in GitHub Desktop.
Save sccolbert/be398b8e1dce5735e935 to your computer and use it in GitHub Desktop.
class MyGridStackContainer extends Widget {
constructor(options: GridStackOptions) {
$(this.node).gridstack(options)
}
protected onChildAdded(msg: ChildMessage): void {
msg.child.addClass('grid-stack-item');
}
protected onChildRemoved(msg: ChildMessage): void {
msg.child.removeClass('grid-stack-item');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment