This file contains hidden or 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
response:{size:0} | |
size: (chunk) -> | |
alert "r.size: " + response.size | |
alert "c.length: " + chunk.length | |
alert "r.size + c.length: " + (response.size + chunk.length) | |
size 'Hello' |
This file contains hidden or 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 is at the start of the current Lexer. | |
# Import the helpers we need. | |
helpers: require('./helpers').helpers | |
include: helpers.include | |
count: helpers.count | |
starts: helpers.starts | |
compact: helpers.compact | |
balanced_string: helpers.balanced_string |
This file contains hidden or 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
var Account, Model; | |
var __extends = function(child, parent) { | |
var ctor = function(){}; | |
ctor.prototype = parent.prototype; | |
child.prototype = new ctor(); | |
child.prototype.constructor = child; | |
if (typeof parent.extended === "function") parent.extended(child); | |
child.__superClass__ = parent.prototype; | |
}; | |
Model = function() {}; |
This file contains hidden or 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
button | |
background: transparent magick-image('folderNav-bg01.png', 211px, 46px, magick-fill(magick-linear-gradient(adjust-lightness($theme02_bc01, 3%), adjust-lightness($theme02_bc01, -18%))), magick-corners(4px)) | |
// change magick-image to magick-sprite | |
// wrap everything after the filename in magick-canvas(..) | |
// --> | |
button | |
background: transparent magick-sprite('folderNav-bg01.png', magick-canvas(211px, 46px, magick-fill(magick-linear-gradient(adjust-lightness($theme02_bc01, 3%), adjust-lightness($theme02_bc01, -18%))), magick-corners(4px))) |