mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-01-26 11:14:04 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
28 lines
369 B
PHP
Executable File
28 lines
369 B
PHP
Executable File
<?php
|
|
|
|
namespace CoffeeScript;
|
|
|
|
class yy_Index extends yy_Base
|
|
{
|
|
public $children = array('index');
|
|
|
|
function constructor($index)
|
|
{
|
|
$this->index = $index;
|
|
|
|
return $this;
|
|
}
|
|
|
|
function compile($options)
|
|
{
|
|
return '['.$this->index->compile($options, LEVEL_PAREN).']';
|
|
}
|
|
|
|
function is_complex()
|
|
{
|
|
return $this->index->is_complex();
|
|
}
|
|
}
|
|
|
|
?>
|