diff --git a/doc/template/resources/csses/ace_api.css b/doc/template/resources/csses/ace_api.css index e1e1332b..7f607325 100644 --- a/doc/template/resources/csses/ace_api.css +++ b/doc/template/resources/csses/ace_api.css @@ -64,8 +64,6 @@ code { } #documentation p { font-size: 13px; - line-height : 20px; - margin-bottom : 13px; } #documentation li p:last-child { margin-bottom : 5px; @@ -806,10 +804,6 @@ li.signature { Everyday I'm togglin' */ -#documentation h3 { - font-size: 24px; - margin-top: 5px; -} #documentation i.methodToggle { cursor: pointer; color: #9f9f9f; @@ -838,7 +832,6 @@ li.signature { } #documentation h3.sectionHeader { - margin: 10px 0 17px 0; line-height : 24px; } diff --git a/index.html b/index.html index b0e3af9d..beaa9c23 100644 --- a/index.html +++ b/index.html @@ -64,16 +64,18 @@

/** - * In fact, you're looking at Ace right now. Go ahead and play with it! + * In fact, you're looking at ACE right now. Go ahead and play with it! * - * We are currently showing off the JavaScript mode. Ace supports over 60 + * We are currently showing off the JavaScript mode. ACE has support for 45 * language modes and 24 color themes! */ + function add(x, y) { - var resultString = "Hello, Ace! The result of your math is: "; + var resultString = "Hello, ACE! The result of your math is: "; var result = x + y; return resultString + result; } + var addResult = add(3, 2); console.log(addResult);
@@ -138,7 +140,7 @@ console.log(addResult);
<!DOCTYPE html> <html lang="en"> <head> - <title>Ace in Action</title> +<title>ACE in Action</title> <style type="text/css" media="screen"> #editor { position: absolute; @@ -949,6 +951,7 @@ module.exports = { +