Code-TidyAll

 view release on metacpan or  search on metacpan

php/PHP_CodeSniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js  view on Meta::CPAN

    a: function()
    {
        var currentSize = null;
        ViperUtil.addEvent(
            header,
            'safedblclick',
            function() {},
        );

    if (topContent) {
        ViperUtil.addClass(topContent, 'Viper-popup-top');
        main.appendChild(topContent);
    }

        ViperUtil.addClass(midContent, 'Viper-popup-content');
        main.appendChild(midContent);
    }

};

a.prototype = {

    a: function()
    {
        ViperUtil.addClass(midContent, 'Viper-popup-content');
        main.appendChild(midContent);

        var mouseUpAction  = function() {};
        var preventMouseUp = false;
        var self           = this;
    if (clickAction) {
    }
    }

};

php/PHP_CodeSniffer/src/Standards/Generic/Tests/WhiteSpace/ScopeIndentUnitTest.1.js.fixed  view on Meta::CPAN

    a: function()
    {
        var currentSize = null;
        ViperUtil.addEvent(
            header,
            'safedblclick',
            function() {},
        );

        if (topContent) {
            ViperUtil.addClass(topContent, 'Viper-popup-top');
            main.appendChild(topContent);
        }

        ViperUtil.addClass(midContent, 'Viper-popup-content');
        main.appendChild(midContent);
    }

};

a.prototype = {

    a: function()
    {
        ViperUtil.addClass(midContent, 'Viper-popup-content');
        main.appendChild(midContent);

        var mouseUpAction  = function() {};
        var preventMouseUp = false;
        var self           = this;
        if (clickAction) {
        }
    }

};



( run in 0.847 second using v1.01-cache-2.11-cpan-364913b4093 )