| author | ymh <ymh.work@gmail.com> |
| Wed, 07 May 2014 15:36:43 +0200 | |
| changeset 1030 | afd77187fd9a |
| parent 1016 | e1752b696a07 |
| child 1072 | ac1eacb3aa33 |
| permissions | -rw-r--r-- |
| 998 | 1 |
/* Initialization of the namespace */ |
|
453
8568e47379a2
added autoconfiguration of the media source for rtmp streams.
hamidouk
parents:
430
diff
changeset
|
2 |
|
| 882 | 3 |
if (typeof window.IriSP === "undefined") { |
| 1002 | 4 |
window.IriSP = { |
| 1016 | 5 |
VERSION: "0.3.2" |
| 1002 | 6 |
}; |
| 882 | 7 |
} |
8 |
||
| 1016 | 9 |
if (typeof IriSP.jQuery === "undefined" && typeof window.jQuery !== "undefined") { |
10 |
var jvp = window.jQuery().jquery.split("."), |
|
11 |
jv = 100 * parseInt(jvp[0]) + parseInt(jvp[1]); |
|
12 |
if (jv > 170) { |
|
13 |
IriSP.jQuery = window.jQuery; |
|
14 |
} |
|
| 868 | 15 |
} |
16 |
||
| 1000 | 17 |
if (typeof IriSP._ === "undefined" && typeof window._ !== "undefined" && parseFloat(window._.VERSION) >= 1.4) { |
| 998 | 18 |
IriSP._ = window._; |
|
875
43629caa77bc
Big refactoring of widget files + started migration of segmentwidget
veltr
parents:
874
diff
changeset
|
19 |
} |