[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 /** 2 * @provides javelin-behavior-error-log 3 * @requires javelin-dom 4 */ 5 6 var current_details = null; 7 8 function show_details(row) { 9 var node = JX.$('row-details-' + row); 10 11 if (current_details !== null) { 12 JX.$('row-details-' + current_details).style.display = 'none'; 13 } 14 15 node.style.display = 'block'; 16 current_details = row; 17 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |