webinar/index.html

70 lines
2.9 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>IF XMPP chat</title>
<link rel="shortcut icon" href="res/img/favicon.png" type="image/gif" />
<link rel="stylesheet" type="text/css" href="res/default.css" />
<!-- Plugins -->
<link rel="stylesheet" type="text/css" href="candy-plugins/colors-xhtml/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/inline-images/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/modify-role/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/namecomplete/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/nickchange/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/replies/candy.css" />
<link rel="stylesheet" type="text/css" href="candy-plugins/lefttabs/lefttabs.css" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" src="libs.min.js"></script>
<script type="text/javascript" src="candy.min.js"></script>
<!-- Plugins -->
<script type="text/javascript" src="candy-plugins/colors-xhtml/candy.js"></script>
<script type="text/javascript" src="candy-plugins/chatrecall/candy.js"></script>
<script type="text/javascript" src="candy-plugins/emphasis/candy.js"></script>
<script type="text/javascript" src="candy-plugins/me-does/candy.js"></script>
<script type="text/javascript" src="candy-plugins/modify-role/candy.js"></script>
<script type="text/javascript" src="candy-plugins/namecomplete/candy.js"></script>
<script type="text/javascript" src="candy-plugins/nickchange/candy.js"></script>
<script type="text/javascript" src="candy-plugins/notifications/candy.js"></script>
<script type="text/javascript" src="candy-plugins/replies/candy.js"></script>
<script type="text/javascript" src="candy-plugins/lefttabs/lefttabs.js"></script>
<script type="text/javascript">
$(document).ready(function() {
CandyShop.LeftTabs.init();
Candy.init('https://oreolek.ru:5281/http-bind/', {
core: {
debug: false,
autojoin: ['webinar@conference.oreolek.ru'],
},
view: {
assets: 'res/',
language: 'ru',
// enable XHTML for colors plugin
enableXHTML: true
}
});
// enable Colors-XHTML plugin (default: 8 colors)
CandyShop.ColorsXhtml.init();
CandyShop.ChatRecall.init();
// enable basic textile/BBCode/Html handling
CandyShop.Emphasis.init();
CandyShop.NameComplete.init();
CandyShop.Replies.init();
// enable /me handling
CandyShop.MeDoes.init();
CandyShop.ModifyRole.init();
CandyShop.Nickchange.init();
CandyShop.Notifications.init();
Candy.Core.connect("guest.oreolek.ru");
});
</script>
</head>
<body>
<div id="candy"></div>
</body>
</html>