File: select.js

package info (click to toggle)
rss-bridge 2019-01-13-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,568 kB
  • sloc: php: 24,150; sh: 13; makefile: 11
file content (10 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
function select(){
	var fragment = window.location.hash.substr(1);
	var bridge = document.getElementById(fragment);

	if(bridge !== null) {
		bridge.getElementsByClassName('showmore-box')[0].checked = true;
	}
}

document.addEventListener('DOMContentLoaded', select);