Change double quotes to single quotes in JavaScript.

Summary: As advised by JSHint.

Test Plan: I'm not really sure how to comprehensively test this. It looks okay to me.

Reviewers: chad, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9677
This commit is contained in:
Joshua Spence
2014-06-24 03:35:39 +10:00
parent a0d63322b1
commit 79f9d87401
19 changed files with 217 additions and 217 deletions

View File

@@ -11,7 +11,7 @@ JX.install('ReactorButtonExample', {
extend: 'View',
members: {
render: function() {
var button = JX.$N('button', {}, "Fun");
var button = JX.$N('button', {}, 'Fun');
var clicks = JX.RDOM.clickPulses(button);
var time = JX.RDOM.time();