Nick : an elevator engineer Laura : a beautiful girl Betsy : an intelligent elevator robot Shane : the simpleton
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
class Item extends Backbone.Model | |
class ItemList extends Backbone.Collection | |
class ItemView extends Backbone.View | |
template : _.template '<%= text %>' | |
initialize : -> |
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
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<button id='do'> Do long calc!</button> | |
<div id='status'></div> | |
<div id='result'></div> | |
<script> | |
$('#do').on('click', function(){ |
NewerOlder