{I" class:ETI"BundledAsset;FI"logical_path;TI"%rails_admin/ra.datetimepicker.js;FI" pathname;TI"w/home/lukas/.rvm/gems/ruby-2.0.0-p0/gems/rails_admin-0.5.0/app/assets/javascripts/rails_admin/ra.datetimepicker.js;FI"content_type;TI"application/javascript;TI" mtime;Tl+ãòdRI" length;Ti@I" digest;TI"%96fe3ced7435454e8476eaa3785ef244;FI" source;TI"@/* * RailsAdmin date/time picker @VERSION * * License * * http://www.railsadmin.org * * Depends: * jquery.ui.core.js * jquery.ui.widget.js * jquery.ui.datepicker.js * jquery.ui.timepicker.js (http://plugins.jquery.com/project/timepicker-by-fgelinas) */ (function($) { $.widget("ra.datetimepicker", { options: { showDate: true, showTime: true, datepicker: {}, timepicker: {} }, _create: function() { var widget = this; this.element.hide(); if (this.options.showTime) { this.timepicker = $(''); this.timepicker.css("width", "60px"); this.timepicker.insertAfter(this.element); this.timepicker.bind("change", function() { widget._onChange(); }); this.timepicker.timepicker(this.options.timepicker); } if (this.options.showDate) { this.datepicker = $(''); this.datepicker.css("margin-right", "10px"); this.datepicker.insertAfter(this.element); this.datepicker.bind("change", function() { widget._onChange(); }); this.datepicker.datepicker(this.options.datepicker); } }, _onChange: function() { var value = []; if (this.options.showDate) { value.push(this.datepicker.val()); } if (this.options.showTime) { value.push(this.timepicker.val()); } this.element.val(value.join(" ")); } }); })(jQuery); ;TI"required_assets_digest;TI"%edce075037da520030746e610863527e;FI" _version;TI"%01dc9d4cb5b0ece13ed47cc1cabfeb41;F