Sha256: 7603dce9d1024e12af577d867348b588bad54d286397281dd7c85d14bc7db30e
Contents?: true
Size: 1.07 KB
Versions: 34
Compression:
Stored size: 1.07 KB
Contents
CKEDITOR.dialog.add 'current_date_time', (editor) -> title: 'Current Date / Time', minWidth: 250, minHeight: 200, contents: [ { id: 'current_date_time', elements: [ { id: 'format', type: 'text', label: 'Date / Time Format', setup: (widget) -> this.setValue(widget.data.format), commit: (widget) -> widget.setData('format', this.getValue()) }, { id: 'help-text', type: 'html', html: '<p>Examples:</p><br><table width="100%"><tr><td>%Y-%m-%d</td><td width="100%"> </td><td>2015-12-25</td></tr><tr><td>%d-%b-%Y</td><td> </td><td>25-Dec-2015</td></tr><tr><td> </td><td></td><td></td></tr><tr><td>%H:%M:%S</td><td> </td><td>18:30:15</td></tr><tr><td>%I:%M%P</td><td> </td><td>6:30pm</td></tr></table><br><p>For a complete reference, please visit:<br><a href="http://apidock.com/ruby/DateTime/strftime" target="_blank">http://apidock.com/ruby/DateTime/strftime</a></p>' } ] } ]
Version data entries
34 entries across 34 versions & 1 rubygems