A search interface for the Performing Patents Otherwise publication as part of the Politics of Patents case study (part of Copim WP6): this parses data from the archive of RTF files and provides additional data from the European Patent Office OPS API.
https://patents.copim.ac.uk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*
- # @name: main.js
- # @version: 0.1
- # @creation_date: 2022-09-07
- # @license: The MIT License <https://opensource.org/licenses/MIT>
- # @author: Simon Bowie <ad7588@coventry.ac.uk>
- # @purpose: JavaScript functions for various functions
- # @acknowledgements:
- */
-
- function hideShowInfo () {
- var iDiv = document.querySelectorAll('.info'), i;
- for (i = 0; i < iDiv.length; ++i) {
- if ( iDiv[i].style.display == 'none') {
- iDiv[i].style.display = 'initial'; }
- else { iDiv[i].style.display = 'none'; }
- }
- }
|