mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-13 08:47:55 -05:00
* Bump version to 2.0.0; bump dependencies versions * Make v2 docs the primary docs; jettison the v1 docs’ source: whenever the v1 docs need to be rebuild in the future, that can be done on the `1` branch and copied over; simplify folder tree * Updated v1 docs that reflect that v2 is out and have updated paths to reflect that the v2 docs are now the primary docs, and the v1 docs only live under /v1/ * Add Google Analytics; track navigation, editing code and running code * 2.0.0 changelog * Fix link to root docs * No more @next; installing local copy should be --save-dev * Analytics on the browser-based tests page should prove fascinating . . . * Update annotated source * Add note to changelog clarifying scope
16 lines
773 B
HTML
16 lines
773 B
HTML
<aside id="try" class="try-coffeescript container-fluid" data-example="try">
|
|
<div class="row">
|
|
<div class="col-md-6 code-column bg-ribbed-dark coffeescript-input-column">
|
|
<textarea class="coffeescript-input" id="try-coffeescript-coffee">alert 'Hello CoffeeScript!'</textarea>
|
|
</div>
|
|
<div class="col-md-6 code-column bg-ribbed-dark javascript-output-column">
|
|
<textarea class="javascript-output" id="try-coffeescript-js">alert('Hello CoffeeScript!');</textarea>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col text-right try-buttons">
|
|
<button type="button" class="btn btn-primary" data-action="run-code-example" data-example="try-coffeescript" data-run="true"><%= include('play.svg') %></button> 
|
|
</div>
|
|
</div>
|
|
</aside>
|