Sha256: bc7088486873270faaf2cf11c31495e6a3afaf8c3a8866a4232bb991d9593962
Contents?: true
Size: 635 Bytes
Versions: 53
Compression:
Stored size: 635 Bytes
Contents
CKEDITOR.dialog.add 'current_user_info', (editor) -> title: 'Current User info', minWidth: 200, minHeight: 100, contents: [ { id: 'current_user_info', elements: [ { id: 'method', type: 'select', label: 'Current User Info', items: [ ['E-mail', 'email'], ['Full Name', 'full_name'], ['First Name', 'first_name'], ['Last Name', 'last_name'] ], setup: (widget) -> this.setValue(widget.data.method), commit: (widget) -> widget.setData('method', this.getValue()) } ] } ]
Version data entries
53 entries across 53 versions & 1 rubygems