/*global Icinga:false, document: false, define:false require:false base_url:false console:false */ /** * Ensures that our date/time controls will work on every browser (natively or javascript based) */ define(['jquery', 'datetimepicker'], function($) { "use strict"; var DateTimeBehaviour = function() { this.enable = function() { $('.datetime input') .attr('data-format', 'yyyy-MM-dd hh:mm:ss'); $('.datetime') .addClass('input-append') .append('' + '') .datetimepicker(); } }; return new DateTimeBehaviour(); });