src/js/header.js
author hamidouk
Mon, 28 Nov 2011 12:14:31 +0100
branchlazyload-js
changeset 341 e9442357851b
parent 0 c357d5b60635
permissions -rw-r--r--
integrating LazyLoad. It replaces the old code in IriSP.loadLibs. As a consequence, LdtPlayer.js is not necessary anymore and has been removed from the build.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
/* 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
 * 	
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
 *	Copyright 2010 Institut de recherche et d'innovation 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 *	contributor(s) : Samuel Huron 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
 *	 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
 *	contact@iri.centrepompidou.fr
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
 *	http://www.iri.centrepompidou.fr 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
 *	 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
 *	This software is a computer program whose purpose is to show and add annotations on a video .
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
 *	This software is governed by the CeCILL-C license under French law and
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
 *	abiding by the rules of distribution of free software. You can  use, 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
 *	modify and/ or redistribute the software under the terms of the CeCILL-C
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
 *	license as circulated by CEA, CNRS and INRIA at the following URL
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
 *	"http://www.cecill.info". 
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
 *	
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
 *	The fact that you are presently reading this means that you have had
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
 *	knowledge of the CeCILL-C license and that you accept its terms.
c357d5b60635 First import. Last version from France culture
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
*/
341
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    19
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    20
if ( window.IriSP === undefined && window.__IriSP === undefined ) { 
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    21
	var IriSP = {}; 
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    22
	var __IriSP = IriSP; /* for backward compatibility */
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    23
}
e9442357851b integrating LazyLoad. It replaces the old code in IriSP.loadLibs.
hamidouk
parents: 0
diff changeset
    24