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.

main.js 521B

2 years ago
123456789101112131415161718
  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. }