Giter Club home page Giter Club logo

Comments (5)

IgorA100 avatar IgorA100 commented on August 17, 2024

In montage.js there is code in "window.onbeforeunload = function(e) {" that stops the monitors.
Why is this code not used?
Were there any problems?

I realized there is a problem with the confirmation pop-up window.

from zoneminder.

IgorA100 avatar IgorA100 commented on August 17, 2024

Why not leave the function like this: ?

window.onbeforeunload = function(e) {
  console.log('unload');
  //event.preventDefault();
  for (let i = 0, length = monitorData.length; i < length; i++) {
    monitors[i].kill();
  }
};

from zoneminder.

IgorA100 avatar IgorA100 commented on August 17, 2024

Or here's a more correct code:

document.onvisibilitychange = () => {
  if (document.visibilityState === "hidden") {
    for (let i = 0, length = monitorData.length; i < length; i++) {
      monitors[i].kill();
    }
  }
};

from zoneminder.

connortechnology avatar connortechnology commented on August 17, 2024

It is code that I was trying out. When the browser is overloaded, trying to navigate away takes forever. So this function is supposed to stop the streams so that the browser can actually get around to navigating away.

from zoneminder.

connortechnology avatar connortechnology commented on August 17, 2024

I highly doubt that any message from videostore has anything to do with navigating away from the montage view. Normally those messages are caused by changes in timestamps back in time, although our current code should not allow that.

from zoneminder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.