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
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- /*
- # @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'; }
- }
- }
|