if (typeof Fox == 'undefined') { Fox = {}; Fox.Strings = { add: function (object) { Object.merge(this, object); return this; } }; Fox.Options = { // Fox.Options.add('key', {...}); add: function (key, data) { var o = {}; o[key] = data; Object.merge(this, o); return this; }, // Return by copy: Fox.Options.get('key'); // Return by reference: Fox.Options['key']; get: function (key) { return Object.merge({}, this[key]); } }; } (function () { Fox.Strings.add( { JCANCEL: "Annuleren", COM_FOXCONTACT_BROWSE_FILES: "Browse bestanden", COM_FOXCONTACT_FAILED: "Mislukt", COM_FOXCONTACT_SUCCESS: "Succes", COM_FOXCONTACT_NO_RESULTS_MATCH: "Geen resultaten gevonden", COM_FOXCONTACT_REMOVE_ALT: "Verwijder", COM_FOXCONTACT_REMOVE_TITLE: "Verwijder dit bestand" } ); Locale.define('dynamic', 'DatePicker', { select_a_time: "Selecteer een tijd", use_mouse_wheel: "Gebruik uw scrollwiel om door de tijd te scrollen", time_confirm_button: "OK" }); Locale.define('dynamic', 'Date', { months: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december"], months_abbr: ["jan", "feb", "mrt", "apr", "mei", "juni", "juli", "aug", "sept", "okt", "nov", "dec"], days: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"], days_abbr: ["zo", "ma", "di", "wo", "do", "vr", "za"] }); Locale.use('dynamic'); // Calendar default options Fox.Options.add('calendar', { timeWheelStep: 60, // JSON.parse() converts string 'true' / 'false' into boolean value rtl: JSON.parse("false") }); Fox.Options.add('chosen', { disable_search_threshold: 1, allow_single_deselect: true, no_results_text: Fox.Strings['COM_FOXCONTACT_NO_RESULTS_MATCH'] }); })(); // Emulate "placeholder" feature on outdated browsers window.addEvent('domready', function () { // Create a new input object, then test if the placeholder attribute is an option inside that object. // It will be an option in browsers that support placeholder text, and absent in those that don’t. if (!('placeholder' in document.createElement('input'))) { Asset.javascript('' + '/media/com_foxcontact/js/placeholder.min.js'); } }); /* Reset button | Reset input */ window.addEvent('domready', function () { if ($$('.fox_form .reset-button').length) { Asset.javascript('' + '/media/com_foxcontact/js/reset.min.js'); } }); /* Captcha begin */ function ReloadFCaptcha(id) { var image = document.getElementById(id); // Generates a unique id with an 8 digits fixed length var uniqueid = Math.floor(Math.random() * Math.pow(10, 8)); image.src = image.src.replace(/uniqueid=[0-9]{8}/, "uniqueid=" + uniqueid); } function BuildReloadButton(id) { document.getElementById(id).src = document.getElementById(id).src.replace("transparent.gif", "reload-16.png"); } /* Captcha end */ /* Enable the following function if you want to enable autofocus to the first input of the first form in the page */ /* window.addEvent('domready', function () { $$('.fox_form')[0].getElement('input[type=text]').focus(); }); */