File: /home/aprilnet/public_html/sciohost.org/wp-content/themes/doris/js/admin/doris-admin.js
/* -----------------------------------------------------------------------------
* Page Template Meta-box
* -------------------------------------------------------------------------- */
;(function( $, window, document, undefined ){
"use strict";
$( document ).ready( function () {
$('.datepicker').datepicker({
format: 'yyyy-mm-dd'
});
//wrapTabOptions();
// Pagebuilder Tabs
} );
})( jQuery, window , document );
/* -----------------------------------------------------------------------------
* UUID
* https://github.com/eburtsev/jquery-uuid/blob/master/jquery-uuid.js
* -------------------------------------------------------------------------- */
;(function( $, window, document, undefined ){
$.uuid = function() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
return v.toString(16);
});
};
})( jQuery, window , document );