Source for file lessjs.php

Documentation is available at lessjs.php

  1. <?php
  2. /**
  3.  * @package     FrameworkOnFramework
  4.  * @subpackage  less
  5.  * @copyright   Copyright (C) 2010 - 2012 Akeeba Ltd. All rights reserved.
  6.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
  7.  */
  8. // Protect from unauthorized access
  9. defined('_JEXEC'or die;
  10.  
  11. /**
  12.  * This class is taken verbatim from:
  13.  *
  14.  * lessphp v0.3.8
  15.  * http://leafo.net/lessphp
  16.  *
  17.  * LESS css compiler, adapted from http://lesscss.org
  18.  *
  19.  * Copyright 2012, Leaf Corcoran <leafot@gmail.com>
  20.  * Licensed under MIT or GPLv3, see LICENSE
  21.  *
  22.  * @package  FrameworkOnFramework
  23.  * @since    2.0
  24.  */
  25. {
  26.     public $disableSingle = true;
  27.  
  28.     public $breakSelectors = true;
  29.  
  30.     public $assignSeparator = ": ";
  31.  
  32.     public $selectorSeparator = ",";
  33. }

Documentation generated on Tue, 19 Nov 2013 15:06:59 +0100 by phpDocumentor 1.4.3