From 8041073c8d74e5d24e3b9f10143f3e4bd04db2de Mon Sep 17 00:00:00 2001 From: Heshan Wanigasooriya Date: Tue, 23 Mar 2010 04:17:29 +0000 Subject: removing old files and commenting new file field and other files to the vidoe module page. --- video.js | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 video.js (limited to 'video.js') diff --git a/video.js b/video.js deleted file mode 100644 index d9e0629..0000000 --- a/video.js +++ /dev/null @@ -1,43 +0,0 @@ -// $Id$ -/** - * @file - * This file contains some useful functions which fixes different - * Internet Explorer strange behaviours. - * This file is inclueded at each video play. - * See functions video_play and theme_video_get_script on video.module - * file for more informations. - * - * @author Fabio Varesano - * @author Heshan Wanigasooriya - * @todo -*/ - -//We do this code only on Internet Explorer. -if (document.all) { - - // Fix for the "Click to interact with ActiveX control" message on IE - var objects = document.getElementsByTagName( 'object' ); - for ( var i = 0; i < objects.length; i++ ) { - var obj = objects[ i ]; - var clone = obj.cloneNode( true ); - var parent = obj .parentNode; - var sibling = obj .nextSibling; - parent.removeChild( obj ); - parent.insertBefore( clone, sibling ); - clone.outerHTML = clone.outerHTML; - } - - - function InsertQuicktimeVideo(vidfile, height, width) - { - document.writeln(''); - document.writeln(''); - document.writeln(''); - document.writeln(''); - document.writeln('\n'); - } - -} - - - -- cgit v1.2.3