/home/vianto5/.trash/cititower.mx/wp-content/themes/montreal/inc/framework/metabox/js
Edit: /home/vianto5/.trash/cititower.mx/wp-content/themes/montreal/inc/framework/metabox/js/cmb.js (4421B)
/**
* Controls the behaviours of custom metabox fields.
*
* @author Andrew Norcross
* @author Jared Atchison
* @author Bill Erickson
* @see https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress
*/
/*jslint browser: true, devel: true, indent: 4, maxerr: 50, sub: true */
/*global jQuery, tb_show, tb_remove */
/**
* Custom jQuery for Custom Metaboxes and Fields
*/
jQuery(document).ready(function ($) {
'use strict';
var formfield;
/**
* Initialize timepicker (this will be moved inline in a future release)
*/
$('.cmb_timepicker').each(function () {
$('#' + jQuery(this).attr('id')).timePicker({
startTime: "07:00",
endTime: "22:00",
show24Hours: false,
separator: ':',
step: 30
});
});
/**
* Initialize jQuery UI datepicker (this will be moved inline in a future release)
*/
$('.cmb_datepicker').each(function () {
$('#' + jQuery(this).attr('id')).datepicker();
// $('#' + jQuery(this).attr('id')).datepicker({ dateFormat: 'yy-mm-dd' });
// For more options see http://jqueryui.com/demos/datepicker/#option-dateFormat
});
// Wrap date picker in class to narrow the scope of jQuery UI CSS and prevent conflicts
$("#ui-datepicker-div").wrap('
');
/**
* Initialize color picker
*/
$('input:text.cmb_colorpicker').each(function (i) {
$(this).after('
');
$('#picker-' + i).hide().farbtastic($(this));
})
.focus(function() {
$(this).next().show();
})
.blur(function() {
$(this).next().hide();
});
/**
* File and image upload handling
*/
$('.cmb_upload_file').change(function () {
formfield = $(this).attr('name');
$('#' + formfield + '_id').val("");
});
$('.cmb_upload_button').live('click', function () {
var buttonLabel;
formfield = $(this).prev('input').attr('name');
buttonLabel = 'Use as ' + $('label[for=' + formfield + ']').text();
tb_show('', 'media-upload.php?post_id=' + $('#post_ID').val() + '&type=file&cmb_force_send=true&cmb_send_label=' + buttonLabel + '&TB_iframe=true');
return false;
});
$('.cmb_remove_file_button').live('click', function () {
formfield = $(this).attr('rel');
$('input#' + formfield).val('');
$('input#' + formfield + '_id').val('');
$(this).parent().remove();
return false;
});
window.original_send_to_editor = window.send_to_editor;
window.send_to_editor = function (html) {
var itemurl, itemclass, itemClassBits, itemid, htmlBits, itemtitle,
image, uploadStatus = true;
if (formfield) {
if ($(html).html(html).find('img').length > 0) {
itemurl = $(html).html(html).find('img').attr('src'); // Use the URL to the size selected.
itemclass = $(html).html(html).find('img').attr('class'); // Extract the ID from the returned class name.
itemClassBits = itemclass.split(" ");
itemid = itemClassBits[itemClassBits.length - 1];
itemid = itemid.replace('wp-image-', '');
} else {
// It's not an image. Get the URL to the file instead.
htmlBits = html.split("'"); // jQuery seems to strip out XHTML when assigning the string to an object. Use alternate method.
itemurl = htmlBits[1]; // Use the URL to the file.
itemtitle = htmlBits[2];
itemtitle = itemtitle.replace('>', '');
itemtitle = itemtitle.replace('', '');
itemid = ""; // TO DO: Get ID for non-image attachments.
}
image = /(jpe?g|png|gif|ico)$/gi;
if (itemurl.match(image)) {
uploadStatus = '
';
} else {
// No output preview if it's not an image
// Standard generic output if it's not an image.
html = '
View File';
uploadStatus = '
';
}
$('#' + formfield).val(itemurl);
$('#' + formfield + '_id').val(itemid);
$('#' + formfield).siblings('.cmb_upload_status').slideDown().html(uploadStatus);
tb_remove();
} else {
window.original_send_to_editor(html);
}
formfield = '';
};
});