fixed merge conflicts
This commit is contained in:
parent
3401a7bc11
commit
d20dcc7c57
|
@ -1162,7 +1162,6 @@ label[for=readonlyinput] {
|
||||||
margin-left:10px;
|
margin-left:10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@media screen and (max-width: 960px) {
|
@media screen and (max-width: 960px) {
|
||||||
.modaldialog {
|
.modaldialog {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -1251,3 +1250,6 @@ label[for=readonlyinput] {
|
||||||
display:none;
|
display:none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.rtl{
|
||||||
|
direction:RTL;
|
||||||
|
}
|
||||||
|
|
|
@ -1127,6 +1127,10 @@ function OUTER(gscope)
|
||||||
{
|
{
|
||||||
setTextSize(value);
|
setTextSize(value);
|
||||||
}
|
}
|
||||||
|
else if (k == 'rtlistrue')
|
||||||
|
{
|
||||||
|
setClassPresence(root, "rtl", !! value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
editorInfo.ace_setBaseText = function(txt)
|
editorInfo.ace_setBaseText = function(txt)
|
||||||
|
|
|
@ -22,6 +22,7 @@ var noColors = false;
|
||||||
var useMonospaceFontGlobal = false;
|
var useMonospaceFontGlobal = false;
|
||||||
var globalUserName = false;
|
var globalUserName = false;
|
||||||
var hideQRCode = false;
|
var hideQRCode = false;
|
||||||
|
var rtlIsTrue = false;
|
||||||
|
|
||||||
$(document).ready(function()
|
$(document).ready(function()
|
||||||
{
|
{
|
||||||
|
@ -88,6 +89,7 @@ function getParams()
|
||||||
var useMonospaceFont = params["useMonospaceFont"];
|
var useMonospaceFont = params["useMonospaceFont"];
|
||||||
var IsnoColors = params["noColors"];
|
var IsnoColors = params["noColors"];
|
||||||
var hideQRCode = params["hideQRCode"];
|
var hideQRCode = params["hideQRCode"];
|
||||||
|
var rtl = params["rtl"];
|
||||||
|
|
||||||
if(IsnoColors)
|
if(IsnoColors)
|
||||||
{
|
{
|
||||||
|
@ -135,6 +137,13 @@ function getParams()
|
||||||
{
|
{
|
||||||
$('#qrcode').hide();
|
$('#qrcode').hide();
|
||||||
}
|
}
|
||||||
|
if(rtl)
|
||||||
|
{
|
||||||
|
if(rtl == "true")
|
||||||
|
{
|
||||||
|
rtlIsTrue = true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getUrlVars()
|
function getUrlVars()
|
||||||
|
@ -294,6 +303,11 @@ function handshake()
|
||||||
pad.changeViewOption('noColors', true);
|
pad.changeViewOption('noColors', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rtlIsTrue == true)
|
||||||
|
{
|
||||||
|
pad.changeViewOption('rtl', true);
|
||||||
|
}
|
||||||
|
|
||||||
// If the Monospacefont value is set to true then change it to monospace.
|
// If the Monospacefont value is set to true then change it to monospace.
|
||||||
if (useMonospaceFontGlobal == true)
|
if (useMonospaceFontGlobal == true)
|
||||||
{
|
{
|
||||||
|
|
|
@ -89,6 +89,7 @@ var padeditor = (function()
|
||||||
|
|
||||||
self.ace.setProperty("showsauthorcolors", noColors);
|
self.ace.setProperty("showsauthorcolors", noColors);
|
||||||
|
|
||||||
|
self.ace.setProperty("rtlIsTrue", rtlIsTrue);
|
||||||
},
|
},
|
||||||
initViewZoom: function()
|
initViewZoom: function()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue