jade
Version:
Jade template engine
43 lines (33 loc) • 609 B
JavaScript
/*!
* Stylus - Media
* Copyright(c) 2010 LearnBoost <dev@learnboost.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var Node = require('./node')
, nodes = require('./');
/**
* Initialize a new `Media` with the given `val`
*
* @param {String} val
* @api public
*/
var Media = module.exports = function Media(val){
Node.call(this);
this.val = val;
};
/**
* Inherit from `Node.prototype`.
*/
Media.prototype.__proto__ = Node.prototype;
/**
* Return @media "val".
*
* @return {String}
* @api public
*/
Media.prototype.toString = function(){
return '@media ' + this.val;
};