Hello,
We're having recent issues with our Live Twitter Feed on our BrightSigns... Loading the Twitter Feed HTML now causes our BrightSigns to crash to a black screen shortly after. We used the tutorial here to set up the feed: https://brightsign.zendesk.com/hc/en-us/articles/115000616273-How-to-display-a-Twitter-Embeded-Timeline-feed-on-a-BrightSign-Player-using-BrightAuthor-
We've made no changes to the HTML file since the initial set up. Please see below for the code. Please assist. Thanks!
<html>
<head>
<meta charset="utf-8">
<title>Twitter Scroll up and down for BrightSign Player</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico in the root directory -->
<!-- <link rel="stylesheet" href="css/normalize.css"> -->
<style>
html,body{ margin:0; padding:0; height:100%; width:100%; }
#vertical-scroll {
animation: GoUp 60s infinite;
margin-left: 20%
}
@keyframes GoUp {
0% {
transform: translate3d(50px, 0px, 0px);
animation-timing-function: ease-in;
}
50% {
transform: translate3d(50px, -1500px, 0px);
animation-timing-function: ease-out;
}
100% {
transform: translate3d(50px, -3000px, 0px);
}
}
::-webkit-scrollbar {width: 0px;height: 0px;}
</style>
<!--<link rel="stylesheet" href="css/GoDown.css">-->
<!--<script src="js/vendor/modernizr-2.8.3.min.js"></script> -->
</head>
<body>
<div id="vertical-scroll">
<a class="twitter-timeline tw-align-center" href="https://twitter.com/LL_Products">Tweets</a>
<script async src="http://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</body>
</html>