10 lines
No EOL
424 B
JavaScript
10 lines
No EOL
424 B
JavaScript
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
|
|
|
$(document).ready(function(){
|
|
|
|
// "more"/"less" HTML truncator for showing more or less content in data property core:overview
|
|
$('.overview-value').truncate({max_length: 500});
|
|
|
|
// Change background color button when verbose mode is off
|
|
$('a#verbosePropertySwitch:contains("Turn off")').addClass('verbose-off');
|
|
}); |