| author | veltr |
| Tue, 18 Jun 2013 11:08:50 +0200 | |
| changeset 1002 | a86208b60c91 |
| parent 1000 | 91023037f841 |
| child 1016 | e1752b696a07 |
| 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 = { |
5 |
VERSION: "0.3.1" |
|
6 |
}; |
|
| 882 | 7 |
} |
8 |
||
| 1000 | 9 |
if (typeof IriSP.jQuery === "undefined" && typeof window.jQuery !== "undefined" && parseFloat(window.jQuery().jquery) >= 1.7) { |
| 998 | 10 |
IriSP.jQuery = window.jQuery; |
| 868 | 11 |
} |
12 |
||
| 1000 | 13 |
if (typeof IriSP._ === "undefined" && typeof window._ !== "undefined" && parseFloat(window._.VERSION) >= 1.4) { |
| 998 | 14 |
IriSP._ = window._; |
|
875
43629caa77bc
Big refactoring of widget files + started migration of segmentwidget
veltr
parents:
874
diff
changeset
|
15 |
} |