Skip to content

Commit a85e64d

Browse files
committed
fixed a bug in reverse.js where the dollar symbol would not appear
1 parent ba6714f commit a85e64d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts.zip

1 Byte
Binary file not shown.

scripts/reverse.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ window.onload=function() {
99
}
1010

1111
function rotate() {
12-
$("img").rotate(180);
13-
$(":image").rotate(180);
12+
\$("img").rotate(180);
13+
\$(":image").rotate(180);
1414
}
1515
</script>

0 commit comments

Comments
 (0)