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.

19 linhas
521B

  1. /*
  2. # @name: main.js
  3. # @version: 0.1
  4. # @creation_date: 2022-09-07
  5. # @license: The MIT License <https://opensource.org/licenses/MIT>
  6. # @author: Simon Bowie <ad7588@coventry.ac.uk>
  7. # @purpose: JavaScript functions for various functions
  8. # @acknowledgements:
  9. */
  10. function hideShowInfo () {
  11. var iDiv = document.querySelectorAll('.info'), i;
  12. for (i = 0; i < iDiv.length; ++i) {
  13. if ( iDiv[i].style.display == 'none') {
  14. iDiv[i].style.display = 'initial'; }
  15. else { iDiv[i].style.display = 'none'; }
  16. }
  17. }