Skip to content

Commit

Permalink
Version 14:
Browse files Browse the repository at this point in the history
* All pages now include <meta http-equiv="X-UA-Compatible" content="IE=edge" /> header so that IE doesn't fail when using a local hostname in the address bar.
* The UI now has an additional sounds array fallback: "www-sounds"
  • Loading branch information
bp2008 committed May 12, 2018
1 parent 0fac34f commit 925a98b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions livestream.htm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Live Video - Blue Iris</title>
<script type="text/javascript" src="clappr/clappr.min.js"></script>
<script type="text/javascript">
Expand Down
1 change: 1 addition & 0 deletions login.htm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Blue Iris Login</title>
Expand Down
1 change: 1 addition & 0 deletions timeout.htm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<title>Timeout - Blue Iris</title>
<script type="text/javascript">
Expand Down
3 changes: 2 additions & 1 deletion ui3.htm
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="icon" href="ui3/launcher-icon.png">
<link rel="apple-touch-icon" href="ui3/launcher-icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down Expand Up @@ -33,7 +34,7 @@
};
</script>
<script type="text/javascript">
var ui_version = "13";
var ui_version = "14";
var bi_version = "%%VERSION%%";
var combined_version = ui_version + "-" + bi_version;
//if (!!navigator.userAgent.match(/ Android /))
Expand Down
2 changes: 2 additions & 0 deletions ui3/ui3.js
Original file line number Diff line number Diff line change
Expand Up @@ -7225,6 +7225,8 @@ function SessionManager()
if (lastResponse && lastResponse.data)
{
var soundsArr = lastResponse.data.www_sounds;
if (!soundsArr)
soundsArr = lastResponse.data["www-sounds"];
if (!soundsArr)
soundsArr = lastResponse.data.sounds;
if (soundsArr)
Expand Down

0 comments on commit 925a98b

Please sign in to comment.