Giter Club home page Giter Club logo

Comments (8)

gabrielstuff avatar gabrielstuff commented on May 14, 2024

Ok looks like it works :

{{data.duration | amDurationFormat:'milliseconds':true}}

And I just add :

.filter('amDurationFormat', ['$window', function ($window) {
        'use strict';

        return function (value, format, suffix) {
            if (typeof value === 'undefined' || value === null) {
                return '';
            }

            if (!isNaN(parseFloat(value)) && isFinite(value)) {
                return '';
            }

            // else assume the given value is a duration in milliseconds
            return $window.moment.duration(value, format).humanize(suffix);
        };
    }])

I'll try to add the text and then pull request.

from angular-moment.

urish avatar urish commented on May 14, 2024

Thanks Gabriel!

Please also add tests for the new directive (in the file test.js). You can easily run tests (and also code style checks) by running grunt test from command line. In order to setup this, you need 2 simple steps:

  1. If you don't have grunt install, run npm install -g grunt-cli
  2. Run npm install in the angular-moment source directory

This will allow you to run the tests & jshint by simply typing grunt test. The tests are pretty simple and quick to create, just look how they are done for the amDateFormat directive. If you need any assistance with this, please let me know.

Thank you so much!

from angular-moment.

urish avatar urish commented on May 14, 2024

Hi Gabriel, how is it going with adding the new filter? If you need any assistance feel free to ping me here

from angular-moment.

gabrielstuff avatar gabrielstuff commented on May 14, 2024

Sorry,

Did not get time to do so :)
Going to do it this weekend.

Thanks,

from angular-moment.

urish avatar urish commented on May 14, 2024

Excellent, thank you very much Gabriel!

from angular-moment.

gabrielstuff avatar gabrielstuff commented on May 14, 2024

done :)

forking and pulling soon. 

from angular-moment.

urish avatar urish commented on May 14, 2024

Awesome!

from angular-moment.

urish avatar urish commented on May 14, 2024

Thanks, released as 0.5.1

from angular-moment.

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.