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
; (function (window, undefined) { | |
window.events = function (name) { | |
if (typeof name !== 'string') | |
return undefined; | |
name = name.toLowerCase(); | |
if (!(window.events.collection[name] instanceof window.events.event)) | |
window.events.collection[name] = new window.events.event(name); |
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
// Uses a port of the Yahoo YUI Compressor | |
// http://yuicompressor.codeplex.com/ | |
using System; | |
using System.IO; | |
using System.Text; | |
using Microsoft.Build.Utilities; | |
using Microsoft.Build.Framework; | |
using Yahoo.Yui.Compressor; | |
using System.Resources; |
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
/* | |
http://en.wikipedia.org/wiki/Bizz_buzz | |
*/ | |
$count: 100 !default; | |
@mixin fizzbuzz( | |
$count | |
) { | |
@for $i from 1 through $count { |
NewerOlder