Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Cloogle
cloogle.org
Commits
cd182f61
Verified
Commit
cd182f61
authored
Nov 10, 2018
by
Camil Staps
🚀
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide identity assignments in unifiers
parent
b3074b64
Pipeline
#16241
passed with stage
in 15 minutes and 59 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
frontend/api.js
frontend/api.js
+4
-2
No files found.
frontend/api.js
View file @
cd182f61
...
...
@@ -201,9 +201,11 @@ function makeUnifier(ufr) {
var
s
=
''
;
for
(
i
in
from_right
)
s
+=
'
<tt>
'
+
from_right
[
i
][
0
]
+
'
</tt> → <tt>
'
+
from_right
[
i
][
1
]
+
'
</tt>;
'
;
if
(
from_right
[
i
][
0
]
!=
from_right
[
i
][
1
])
s
+=
'
<tt>
'
+
from_right
[
i
][
0
]
+
'
</tt> → <tt>
'
+
from_right
[
i
][
1
]
+
'
</tt>;
'
;
for
(
i
in
from_left
)
s
+=
'
<tt>
'
+
from_left
[
i
][
1
]
+
'
</tt> ← <tt>
'
+
from_left
[
i
][
0
]
+
'
</tt>;
'
;
if
(
from_left
[
i
][
0
]
!=
from_left
[
i
][
1
])
s
+=
'
<tt>
'
+
from_left
[
i
][
1
]
+
'
</tt> ← <tt>
'
+
from_left
[
i
][
0
]
+
'
</tt>;
'
;
return
s
.
substring
(
0
,
s
.
length
-
2
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment