mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Javascript, unlike PHP doesn't need double quotes for \n
This just cleans up a few places where single quotes should have been used instead of double quotes. Change-Id: I6c53652e71ab96842ed5bb41fb1e0b8c923eb25d
This commit is contained in:
parent
255ce870e2
commit
2eb0d4e51f
|
@ -72,7 +72,7 @@ QUnit.test( 'annotate', 1, function ( assert ) {
|
|||
'expected':
|
||||
[
|
||||
[
|
||||
"b",
|
||||
'b',
|
||||
{
|
||||
"{\"type\":\"textStyle/bold\"}": {
|
||||
"type": "textStyle/bold"
|
||||
|
@ -80,7 +80,7 @@ QUnit.test( 'annotate', 1, function ( assert ) {
|
|||
}
|
||||
],
|
||||
[
|
||||
"o",
|
||||
'o',
|
||||
{
|
||||
"{\"type\":\"textStyle/bold\"}": {
|
||||
"type": "textStyle/bold"
|
||||
|
@ -88,7 +88,7 @@ QUnit.test( 'annotate', 1, function ( assert ) {
|
|||
}
|
||||
],
|
||||
[
|
||||
"l",
|
||||
'l',
|
||||
{
|
||||
"{\"type\":\"textStyle/bold\"}": {
|
||||
"type": "textStyle/bold"
|
||||
|
@ -96,7 +96,7 @@ QUnit.test( 'annotate', 1, function ( assert ) {
|
|||
}
|
||||
],
|
||||
[
|
||||
"d",
|
||||
'd',
|
||||
{
|
||||
"{\"type\":\"textStyle/bold\"}": {
|
||||
"type": "textStyle/bold"
|
||||
|
|
Loading…
Reference in a new issue