From e730f330afd8767febde57d653b7f1246151756b Mon Sep 17 00:00:00 2001 From: ngn Date: Thu, 23 Apr 2015 10:19:23 +0100 Subject: [PATCH] removed unnecessary quotes around html attributes --- client/about.coffee | 16 ++++++------ client/connect.coffee | 44 ++++++++++++++++----------------- client/ide.coffee | 22 ++++++++--------- client/init.coffee | 2 +- client/prefs-ui-keyboard.coffee | 20 +++++++-------- client/prefs-ui-title.coffee | 29 +++++++++++----------- client/prefs-ui.coffee | 8 +++--- empty.html | 2 +- index.html | 8 +++--- 9 files changed, 74 insertions(+), 77 deletions(-) diff --git a/client/about.coffee b/client/about.coffee index de9e341b..8f38c985 100644 --- a/client/about.coffee +++ b/client/about.coffee @@ -17,25 +17,23 @@ module.exports = -> """ buttons = [] if D.clipboardCopy then buttons.push text: 'Copy', click: -> D.clipboardCopy $('textarea', @).val(), 'text'; return - buttons.push text: 'Close', click: -> $(@).dialog 'close' + buttons.push text: 'Close', click: -> $(@).dialog 'close'; return $(""" -
-