OpenGems/redis_web_manager

View on GitHub
app/assets/javascripts/redis_web_manager/keys.js

Summary

Maintainability
A
0 mins
Test Coverage
$(document).ready(function () {
    const url = document.location.toString();
    if (url.match('#')) {
        $('.nav-tabs a[href="#' + url.split('#')[1] + '"]').tab('show');
    }
    $('.nav-tabs a').on('click', function () {
        window.location.hash = this.target.hash;
        $(this).tab('show');
    });

    $('#sort').on('click', function () {
        console.log('e')
    })
});