blob: 3f520280a17c02754668ac93ff5f61d9e36dfaf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<script type="text/javascript" src="static/js/jquery-1.4.2.min.js"></script>
<script src="static/js/pichat2.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://dump.fm/static/js/admin.js" type="text/javascript"></script>
<script type="text/javascript" src="http://dump.fm/static/js/invalid_domains.js"></script>
<script type="text/javascript" src="http://dump.fm/static/webcam/webcam.js"></script>
<script type="text/javascript" src="http://dump.fm/static/js/ajaxupload.js"></script>
<script type="text/javascript" src="http://dump.fm/json/ryz/favorites"></script>
<script>
jQuery(document).ready(initChat);
var Nick = "ryz";
var Room = "VIP";
var Timestamp = 1342584973920;
var IsAdmin = true;
if (Nick) {
jQuery(document).ready(function() { setupUpload('upload', Room); });
}
function showAlert() { alert('MUST LOGIN'); }
var newwindow;
function pop(url) {
newwindow=window.open(url,'name','height=50,width=400,left=20,top=20,location=0,status=0,scrollbar=0,resizable=0');
if (window.focus) {newwindow.focus()}
}
jQuery(Away.startTitleUpdater);
jQuery(initChatMsgs);
//
</script>
|