Page MenuHomestyx hydra

behavior-error-log.js
No OneTemporary

behavior-error-log.js

/**
* @provides javelin-behavior-error-log
* @requires javelin-dom
*/
/* exported show_details */
var current_details = null;
function show_details(row) {
var node = JX.$('row-details-' + row);
if (current_details !== null) {
JX.$('row-details-' + current_details).style.display = 'none';
}
node.style.display = 'block';
current_details = row;
}

File Metadata

Mime Type
text/plain
Expires
Thu, Jan 15, 4:02 AM (1 d, 13 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
610448
Default Alt Text
behavior-error-log.js (368 B)

Event Timeline