Skip to content

Settings and activity

1 result found

  1. 1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Ittay commented  · 

    In the meanwhile, this greasemonkey/tampermonkey scripts seems to work:
    // ==UserScript==
    // @name RTL for checkvist
    // @namespace http://rtl.checkvist.com
    // @include https://checkvist.com/checklists/*
    // @version 1
    // @require https://code.jquery.com/jquery-3.1.0.min.js
    // ==/UserScript==

    console.log("changing RTL");

    function rtl() {
    $('.coreDiv').attr('dir', 'rtl');
    }

    rtl();

    document.addEventListener('DOMNodeInserted', rtl, false);

    Ittay shared this idea  ·