(function ($) { $(document).ready(function () { $(".tooltip").frosty(); // DASHBOARD // Edit menu custom block - dashboard $('#menu-overview thead tr th:nth-child(4)').attr('colspan', 6); // NODE FORM var $formNode = $('form.node-form'); if($formNode !== undefined) { var node_id = $('#node-id').val(); var node_type = $('#node-type').val(); if(node_id !== undefined) { // Language select dropdown // add translation if node is saved $('#edit-language').change(function(e) { $(this).parents().find('.form-type-select').html('

Prosim počakaj ...

'); node_type = node_type.replace('_', '-'); if(this.value !== 'und') window.location = Drupal.settings.basePath + 'node/add/'+ node_type +'?translation='+ node_id + '&target='+ this.value; }); } } }); })(jQuery);