Welcome to mirror list, hosted at ThFree Co, Russian Federation.

scripts.js « js « static - github.com/jbub/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 32ec7536a45aa7a00f16b7a0ad633414d1fa5b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
jQuery(function ($) {

    /* ============================================================ */
    /* Responsive Videos */
    /* ============================================================ */

    $(".post-content").fitVids();

    /* ============================================================ */
    /* Scroll To Top */
    /* ============================================================ */

    $('.js-jump-top').on('click', function (e) {
        e.preventDefault();

        $('html, body').animate({ 'scrollTop': 0 });
    });
});