$.CMS = function(){ var current_path = window.location.pathname; var admin_path_prefix = current_path.split('/')[1] $(document).ready(function(){ $.CMS.slugify(); $.CMS.tree_methods(); $.CMS.load_page_blocks(); $.CMS.enable_rich_text(); $.CMS.enable_date_picker(); if($('#uploader_button').get(0)) $.CMS.enable_uploader(); }); return { slugify: function(){ $('input#slugify').bind('keyup.cms', function() { $('input#slug').val( slugify( $(this).val() ) ); }); function slugify(str){ str = str.replace(/^\s+|\s+$/g, ''); var from = "ÀÁÄÂÈÉËÊÌÍÏÎÒÓÖÔÙÚÜÛàáäâèéëêìíïîòóöôùúüûÑñÇç·/_,:;"; var to = "aaaaeeeeiiiioooouuuuaaaaeeeeiiiioooouuuunncc------"; for (var i=0, l=from.length ; i' + file.name + '' ); }); uploader.start(); }); uploader.bind('Error', function(up, err) { alert('File Upload failed') }); uploader.bind('FileUploaded', function(up, file, response){ $('#' + file.id).replaceWith(response.response); }); } } }();