mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-08-28 22:10:31 -04:00
Fix RTL comparator operators.
This commit is contained in:
parent
3cf06078a2
commit
b614cfb1c1
1 changed files with 4 additions and 4 deletions
|
@ -274,10 +274,10 @@ Blockly.Blocks['logic_compare'] = {
|
|||
var rtlOperators = [
|
||||
['=', 'EQ'],
|
||||
['\u2260', 'NEQ'],
|
||||
['>', 'LT'],
|
||||
['\u2265', 'LTE'],
|
||||
['<', 'GT'],
|
||||
['\u2264', 'GTE']
|
||||
['\u200F<\u200F', 'LT'],
|
||||
['\u200F\u2264\u200F', 'LTE'],
|
||||
['\u200F>\u200F', 'GT'],
|
||||
['\u200F\u2265\u200F', 'GTE']
|
||||
];
|
||||
var ltrOperators = [
|
||||
['=', 'EQ'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue