Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
<script> | |
angular.directive('tj:focus', function(){ | |
return function(scope, element){ | |
element[0].focus(); | |
}; | |
}); | |
</script> | |
<div> | |
<input type="text" ng:model="model" tj:focus /> |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
tr { | |
border-width:1px 1px 1px 5px; | |
border-style: solid; | |
border-color:#fff; | |
} | |
tr:hover { | |
border-color: red; |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
tr { | |
border-width: 1px 0px 1px 0px; | |
border-style: solid; | |
border-color: #fff; | |
display: block; | |
} | |
tr:hover { |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
tr { | |
border-width: 1px 0px 1px 0px; | |
border-style: solid; | |
border-color: #fff; | |
display: block; | |
} | |
tr:hover { |
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
tr { | |
border-width: 1px 0px 1px 0px; | |
border-style: solid; | |
border-color: #fff; | |
display: block; | |
} | |
tr:hover { |
.button { | |
box-sizing: border-box; | |
background-color: #009DFF; | |
font-family: Lato, 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif; | |
color: #FFF; | |
display: inline-block; | |
font-size: .9em; | |
padding-bottom: 0.5em; | |
padding-left: 0.8em; | |
padding-right: 0.8em; |
@mixin same($values...){ | |
$length: length($values); | |
$value: nth($values, $length); | |
@for $i from 1 to $length{ | |
#{nth($values, $i)}: $value; | |
} | |
} | |
//Usage: |
/** | |
* (C)Leanest CSS spinner ever | |
*/ | |
@keyframes spin { | |
to { transform: rotate(1turn); } | |
} | |
.progress { | |
display: inline-block; |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
describe('Descrição do grupo de testes', function() { | |
beforeEach(function() { | |
// Roda antes de cada teste | |
}); | |
afterEach(function() { | |
// Roda depois de cada teste | |
}); |