Coder Social home page Coder Social logo

Comments (4)

walmik avatar walmik commented on August 28, 2024

This is a dupe of issue #1 and is under consideration.

Having said that, here s a quick implementation you can try. In the plugin JS itself, add a function right after the function secondsToTime like this:

function secondsToHhMmSs(totalSeconds) {
    var hours = parseInt( totalSeconds / 3600 ) % 24,
        minutes = parseInt( totalSeconds / 60 ) % 60,
        seconds = totalSeconds % 60,
        result = (hours < 10 ? "0" + hours : hours) + ":" + (minutes < 10 ? "0" + minutes : minutes) + ":" + (seconds  < 10 ? "0" + seconds : seconds);

    return result;
}

And in the function render() (currently on line 71) change the following line
$el[display](secondsToTime(totalSeconds));

to

$el[display](secondsToHhMmSs(totalSeconds));

Lemme know if that works for you. If not then I ll implement this soon :)

from timer.jquery.

TryHardDev avatar TryHardDev commented on August 28, 2024

Thanks walmik - I'll give it a go and get back to you. Can you recommend a tool for generated the minified code?

from timer.jquery.

TryHardDev avatar TryHardDev commented on August 28, 2024

Hi Walmik, your code worked like a treat! Thanks very much 👍

from timer.jquery.

walmik avatar walmik commented on August 28, 2024

You are very welcome :)

from timer.jquery.

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.