5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2025-02-22 16:51:50 +00:00
panel/app/assets/javascripts/rtl.js

9 lines
218 B
JavaScript
Raw Permalink Normal View History

$(document).on('turbolinks:load', function() {
$('#post_dir').change(function(e) {
var dir = $(this).val();
var rid = (dir == 'rtl') ? 'ltr' : 'rtl';
$('.'+rid).removeClass(rid).addClass(dir);
});
});