33 lines
779 B
JavaScript
33 lines
779 B
JavaScript
/*
|
|
* Inspector helper functions.
|
|
*
|
|
*/
|
|
+function ($) { "use strict";
|
|
|
|
// NAMESPACES
|
|
// ============================
|
|
|
|
if ($.oc === undefined)
|
|
$.oc = {}
|
|
|
|
if ($.oc.inspector === undefined)
|
|
$.oc.inspector = {}
|
|
|
|
$.oc.inspector.helpers = {}
|
|
|
|
$.oc.inspector.helpers.generateElementUniqueId = function(element) {
|
|
if (element.hasAttribute('data-inspector-id')) {
|
|
return element.getAttribute('data-inspector-id')
|
|
}
|
|
|
|
var id = $.oc.inspector.helpers.generateUniqueId()
|
|
element.setAttribute('data-inspector-id', id)
|
|
|
|
return id
|
|
}
|
|
|
|
$.oc.inspector.helpers.generateUniqueId = function() {
|
|
return "inspectorid-" + Math.floor(Math.random() * new Date().getTime());
|
|
}
|
|
|
|
}(window.jQuery) |