Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
YaPaY authored Sep 30, 2018
1 parent 417306d commit b3eac1e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 10 deletions.
21 changes: 19 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
padding: 1.0vw 8.0vw;
}
</style>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script type="text/javascript" src="https://www.pusulaswiss.ch/1/js/jquery-3.0.0.js"></script>
<script type="text/javascript">
$(function() {
String.prototype.startsWith = function(t) {
Expand All @@ -84,6 +84,7 @@
imgThumb = $("#img_thumb"),
plotInfo = $("#plot"),
loadingAni = $("#loading"),
isSuspended = false,
O = $("#volume"),
T = $("#vol_text"),
msg = $("#message"),
Expand Down Expand Up @@ -531,7 +532,7 @@
}

$(document.body).keydown(function(t) {
switch (t.keyCode || t.which) {
switch(t.keyCode || t.which) {
case 8:
case 83:
goBack();
Expand Down Expand Up @@ -579,6 +580,22 @@
} else {
window.location.href = "http://buritv.ddns.net/stalker_portal/c";
}
break;
case 117:
if(!isSuspended) {
isSuspended = true;
if(v.IsPlaying()) v.Pause();
v.StandBy(true);
} else {
isSuspended = false;
v.StandBy(false);
v.Continue();
}
break;
default:
T.text('Key code: ' + (t.keyCode||t.which));
O.show();
break;
}
});
process();
Expand Down
15 changes: 7 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "puhutv",
"name": "puhutv-stb",
"date": "2018.09.28",
"version": "3.0.0",
"description": "Puhutv for IPTV",
"version": "1.0.0",
"description": "PuhuTV for STB",
"author": {
"name": "FactoryKodi"
"name": "pusulaswiss.ch"
},
"repository": {
"type": "git",
"url": "https://github.com/YaPaY/brtvphtv.git"
"url": "https://github.com/your/repo.git"
},
"dependencies": {},
"config": {
Expand All @@ -21,9 +21,8 @@
"1080": "img/"
},
"states": {
"normal": "icons/2015.png",
"normal": "img/icons/2015.png",
"active": "img/icons/2015.focus.png"
"normal": "icon.png",
"active": "icon.png"
}
}
}
Expand Down

0 comments on commit b3eac1e

Please sign in to comment.