-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed unnecessary quotes around html attributes
- Loading branch information
Showing
9 changed files
with
74 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
$(""" | ||
<div class="about"> | ||
<div class="logo"> | ||
<div class="contact-info"> | ||
<div class=about> | ||
<div class=logo> | ||
<div class=contact-info> | ||
<span title="Dyalog's UK phone number">+44 (0)1256 830030</span><br> | ||
<a href="mailto:[email protected]?subject=RIDE&body=#{escape '\n--\n' + info}" | ||
title="Populate an email draft with the information below">[email protected]</a><br> | ||
<a href="http://www.dyalog.com/" target="_blank" | ||
<a href="http://www.dyalog.com/" target=_blank | ||
title="Open Dyalog's website in a new window">www.dyalog.com</a> | ||
</div> | ||
</div> | ||
<div class="textarea-wrapper"> | ||
<textarea readonly wrap="off"></textarea> | ||
</div> | ||
<div class=textarea-wrapper><textarea readonly wrap=off></textarea></div> | ||
</div> | ||
""") | ||
.dialog | ||
modal: 1, title: 'About', width: 520, height: 410, buttons: buttons | ||
open: -> $(@).find('textarea').focus() | ||
open: -> $(@).find('textarea').focus(); return | ||
.find('textarea').val(info).select() | ||
return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<!doctype html> | ||
<html><head><meta charset="utf-8"><title></title></head><body></body></html> | ||
<html><head><meta charset=utf-8><title></title></head><body></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta charset=utf-8> | ||
<title>Dyalog IDE</title> | ||
<link rel="stylesheet" href="codemirror.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
<script src="D.js"></script> | ||
<link rel=stylesheet href=codemirror.css> | ||
<link rel=stylesheet href=style.css> | ||
<script src=D.js></script> | ||
</head> | ||
<body><noscript>JavaScript is not enabled.</noscript></body> | ||
</html> |