mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fixing directionality in tinymce
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
<script type="text/javascript">
|
||||
var mediaPickerEnabled = @(shellDescriptor.Features.Any(x => x.Name == "Orchard.MediaPicker") ? "true" : "false");
|
||||
var mediaLibraryEnabled = @(shellDescriptor.Features.Any(x => x.Name == "Orchard.MediaLibrary") ? "true" : "false");
|
||||
var directionality = @(currentCulture.TextInfo.IsRightToLeft ? "rtl" : "ltr");
|
||||
var directionality = '@(currentCulture.TextInfo.IsRightToLeft ? "rtl" : "ltr")';
|
||||
</script>
|
||||
|
||||
@{
|
||||
|
||||
Reference in New Issue
Block a user