Skip to content

Instantly share code, notes, and snippets.

View aeby's full-sized avatar
🗯️
Against oppression, hatred, racism, fascism and violence

Reto Aebersold aeby

🗯️
Against oppression, hatred, racism, fascism and violence
View GitHub Profile
@aeby
aeby / tabActive.js
Last active May 1, 2017 00:14
Workaround for Angular Material md-tab's md-active attribute triggering a click event (https://github.com/angular/material/issues/5351)
(function () {
'use strict';
angular
.module('material.components.tabs')
.directive('mdActiveNc', MdActiveNoClick);
function MdActiveNoClick() {
return {
link: link,
@chriseppstein
chriseppstein / 0_usage.scss
Created February 29, 2012 19:29
This is code that runs using Sass 3.2 prerelease and something like this will be in compass soon.
@include keyframes(appear-and-roundify) {
0% { opacity: 0; @include border-radius(2px); }
100% { opacity: 1; @include border-radius(10px); }
}
//
// Regular Expression for URL validation
//
// Author: Diego Perini
// Created: 2010/12/05
// Updated: 2018/09/12
// License: MIT
//
// Copyright (c) 2010-2018 Diego Perini (http://www.iport.it)
//