I hereby claim:
- I am joshbroton on github.
- I am joshbroton (https://keybase.io/joshbroton) on keybase.
- I have a public key whose fingerprint is D62A BD7D 7F67 D9C7 87A9 3E62 1026 B187 003C CF44
To claim this, I am signing this object:
.element { | |
background: red; | |
@include medium() { | |
background: blue; | |
} | |
@include wide() { | |
background: red; | |
} |
angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers']) | |
.run(function(DB) { | |
DB.init(); | |
}); |
I hereby claim:
To claim this, I am signing this object:
function getParameterByName(name) { | |
var match = RegExp('[?&]' + name + '=([^&]*)') | |
.exec(window.location.search); | |
return match ? | |
decodeURIComponent(match[1].replace(/\+/g, ' ')) | |
: null; | |
} |
// animate with prefixes | |
// @include animation(ANIMATIONNAME LENGTH REPEAT INOUT,ANIMATIONNAME LENGTH REPEAT INOUT,ANIMATIONNAME LENGTH REPEAT INOUT); | |
@mixin animation($animate...) { | |
$max: length($animate); | |
$animations: ''; | |
@for $i from 1 through $max { | |
$animations: #{$animations + nth($animate, $i)}; | |
@if $i < $max { |