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
import 'dart:typed_data'; | |
const BAR = Foo( | |
a: true, | |
b: 1234, | |
c: C( | |
$unknownData: null, | |
d: "abcd", | |
)); |
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
@mixin angular-animate-hide($duration,$property,$easing,$min-val,$max-val){ | |
transition :$duration $property $easing; | |
&.ng-hide-add,&.ng-hide-remove{ | |
display: block !important; | |
#{$property}: $min-val; | |
} | |
&.ng-hide-remove.ng-hide-remove-active{ | |
#{$property}: $max-val; |
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
@import "bourbon"; | |
//Change the media breakpoints as you see fit | |
$mediaMobile: 600px; | |
$mediaTablet: 1080px; | |
@mixin responds-to($media: desktop) { | |
//All screens greater than tablet size |
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
{ | |
"vars": { | |
"@border-radius-base": "4px", | |
"@border-radius-large": "4px", | |
"@border-radius-small": "3px", | |
"@tooltip-max-width": "200px", | |
"@tooltip-color": "#fff", | |
"@tooltip-bg": "#000", | |
"@tooltip-opacity": ".9", | |
"@tooltip-arrow-width": "5px", |
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
var fs = require("fs"); | |
var path = require("path"); | |
var rmdir = function(dir) { | |
var empty = true, list = fs.readdirSync(dir); | |
for(var i = list.length - 1; i >= 0; i--) { | |
var filename = path.join(dir, list[i]); | |
var stat = fs.statSync(filename); | |
if(filename.indexOf('.') > -1) { |