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
/* | |
* Copyright (c) 2012-2013 [CodeCatalyst, LLC](http://www.codecatalyst.com/). | |
* Open source under the [MIT License](http://en.wikipedia.org/wiki/MIT_License). | |
*/ | |
require( [ 'underscore' ], function ( _ ) { | |
_.mixin( { | |
'toQueryString': function ( parameters ) { | |
var queryString = _.reduce( | |
parameters, | |
function ( components, value, key ) { |
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
<!DOCTYPE HTML> | |
<html> | |
<head> | |
<title>Example Application</title> | |
<link rel="stylesheet" type="text/css" href="lib/extjs-4.1.0/resources/css/ext-all.css"/> | |
<script type="text/javascript" src="lib/extjs-4.1.1/ext-dev.js"></script> | |
<script type="text/javascript"> | |
Ext.Loader.setConfig({ | |
enabled: true, |
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
#!/bin/bash | |
echo -n "> " | |
while read -r line | |
do | |
echo | |
coffee -ecb "$line" | |
echo | |
echo -n "> " | |
done |
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
<?xml version="1.0" encoding="utf-8"?> | |
<mx:Application | |
xmlns:mx="http://www.adobe.com/2006/mxml" | |
xmlns:fe="http://www.codecatalyst.com/2011/flex-extensions"> | |
<mx:Style> | |
CheckGroup | |
{ | |
padding-left: 10; |
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
package | |
{ | |
import com.codecatalyst.util.invalidation.InvalidationTracker; | |
import mx.core.UIComponent; | |
public class InvalidationTrackerExampleComponent extends UIComponent | |
{ | |
// ======================================== | |
// Protected properties |
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
package com.codecatalyst.components | |
{ | |
import mx.containers.Box; | |
public class BoxFrame extends Box | |
{ | |
// ======================================== | |
// Constructor | |
// ======================================== | |
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
package com.codecatalyst.charting.component | |
{ | |
import flash.geom.Point; | |
import flash.geom.Rectangle; | |
import mx.charts.DateTimeAxis; | |
import mx.charts.chartClasses.CartesianChart; | |
import mx.charts.chartClasses.CartesianDataCanvas; | |
import mx.charts.chartClasses.ChartState; | |
import mx.styles.CSSStyleDeclaration; |