From 04d53629db766afc470380db98a66cc0a1502869 Mon Sep 17 00:00:00 2001 From: Yuri Kunde Schlesner Date: Sat, 23 Aug 2014 11:48:58 -0300 Subject: Remove documentation for external modules. We don't need these and they clutter up the repository. --- externals/glfw-3.0.2/docs/html/dynsections.js | 97 --------------------------- 1 file changed, 97 deletions(-) delete mode 100644 externals/glfw-3.0.2/docs/html/dynsections.js (limited to 'externals/glfw-3.0.2/docs/html/dynsections.js') diff --git a/externals/glfw-3.0.2/docs/html/dynsections.js b/externals/glfw-3.0.2/docs/html/dynsections.js deleted file mode 100644 index ed092c7f6..000000000 --- a/externals/glfw-3.0.2/docs/html/dynsections.js +++ /dev/null @@ -1,97 +0,0 @@ -function toggleVisibility(linkObj) -{ - var base = $(linkObj).attr('id'); - var summary = $('#'+base+'-summary'); - var content = $('#'+base+'-content'); - var trigger = $('#'+base+'-trigger'); - var src=$(trigger).attr('src'); - if (content.is(':visible')===true) { - content.hide(); - summary.show(); - $(linkObj).addClass('closed').removeClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); - } else { - content.show(); - summary.hide(); - $(linkObj).removeClass('closed').addClass('opened'); - $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); - } - return false; -} - -function updateStripes() -{ - $('table.directory tr'). - removeClass('even').filter(':visible:even').addClass('even'); -} -function toggleLevel(level) -{ - $('table.directory tr').each(function(){ - var l = this.id.split('_').length-1; - var i = $('#img'+this.id.substring(3)); - var a = $('#arr'+this.id.substring(3)); - if (l