Logos not opening
BroCraig
Member Posts: 4
I trashed it on my Mac since it did not open. Redownloaded it. It opened. Then when pointing to a word the information panel does not let me hover and get the meaning of the word. It gives me something else. I quit and reopened and it will not open. UGH.
Tagged:
0
Comments
-
Sorry to hear you are having problems.
Please enable diagnostic logging on your Mac - see https://support.logos.com/hc/en-us/articles/360027869132-How-to-Enable-and-Submit-Log-Files for details - and post logs in a reply to this thread (using the paperclip icon) after attempting to start Logos or Logos crashing
0 -
-
Will do. It appears logos is now working fine. Odd.
// <![CDATA[
(function() {
function act() {
let v = document.querySelector('video');
v.addEventListener('webkitpresentationmodechanged', (e)=>{
e.stopPropagation();
console.log('stop prop');
}, true);
v.setAttribute('pip-mode', 'true');
// setTimeout(()=>{
// v.webkitSetPresentationMode('picture-in-picture');
// console.log('pip');
// }, 1000);
}
function helper() {
let vid = document.querySelector('video');
if (vid && vid.getAttribute('pip-mode') !== 'true') {
act()
}
}
setInterval(() => helper(), 1000)
})()
// ]]>0