cis notified web server of a job completion; upload form interface and validation...
[living-lab-site.git] / application / views / side_default.php
1 <div class="ui-widget ui-widget-content ui-widget-header ui-corner-all">
2         <div id="container-install-swarmplayer" class="container-install"></div>
3         <div id="container-install-nextsharepc" class="container-install"></div>
4 </div>
5
6 <script type="text/javascript">
7         $(function() {
8                 var msgLocalized = {
9                         "none": "<?php echo $this->lang->line('ui_install') ?>",
10                         "os not supported": "<?php echo $this->lang->line('ui_install_os_not_supported') ?>",
11                         "browser not supported": "<?php echo $this->lang->line('ui_install_browser_not_supported') ?>",
12                         "browser version not supported": "<?php echo $this->lang->line('ui_install_browser_version_not_supported') ?>",
13                         "already installed": "<?php echo $this->lang->line('ui_install_already_installed') ?>"
14                 };
15
16         $('#container-install-swarmplayer')
17                 .nsinstall({
18                                 "type": "ns-html5",
19                                 "installLink": "<?php echo site_url('install-plugins#SwarmPlayer') ?>",
20                                 hideIfAlreadyInstalled: false,
21                                 msg: msgLocalized
22                 });
23
24         $('#container-install-nextsharepc')
25                 .nsinstall({
26                                 "type": "ns-vlc",
27                                 "installLink": "<?php echo site_url('install-plugins#NextSharePC') ?>",
28                                 hideIfAlreadyInstalled: false,
29                                 msg: msgLocalized
30                 });
31         });
32 </script>