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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName: 'Ember Twiddle' | |
}); |
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
ffmpeg -i "input.mkv" \ | |
-map 0:0 -map 0:1 -map 0:1 \ | |
-c:v copy \ | |
-c:a:0 libfaac -b:a:0 192k -ac 2 \ | |
-c:a:1 copy \ | |
"output.conv.mkv" |
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
git branch --merged master | grep -v "\* master" | xargs -n 1 git branch -d |
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
<div id="browserUpdate" class="browserUpdate overlay"> | |
<a href="#" class="overlay-close js-close"><i class="icn-x icon-box -rev"></i></a> | |
<div class="view view-directory swiper-container browserUpdate-container"> | |
<div class="swiper-slide"> | |
<div class="row cf"> | |
<div class="col-18 ac ci browserUpdate-info"> | |
<img class="browserUpdate-warning-icon" src="/sites/all/themes/adu/assets/media/img/optimized/browserUpdate/warning.png" alt="warning icon"> | |
<h4>Did you know your browser is out of date?</h4> | |
<p>To get the best possible experience using our website we recommend that you upgrade to a newer version or other web broswer. A list of the most popular web browsers can be found below. </p> | |
<p><strong>By closing this window you acknowledge that your experience on this website may be degraded.</strong></p> |
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
/* ---------------------------------------------------------------------------------------------------------- | |
03 SmartResize | |
---------------------------------------------------------------------------------------------------------- */ | |
(function($,sr){ | |
// debouncing function from John Hann | |
// http://unscriptable.com/index.php/2009/03/20/debouncing-javascript-methods/ | |
var debounce = function (func, threshold, execAsap) { | |
var timeout; | |
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
/* ---------------------------------------------------------------------------------------------------------- | |
03 scroll to #section-id-of-div | |
---------------------------------------------------------------------------------------------------------- */ | |
function smoothScroll(el, target){ | |
// if the hash is in the URL but not on the page... ex #cosmetic-surgery but not #section-this-div | |
if(el !== null){ | |
var $this = $(el), | |
target = el.hash, | |
$target = $(target); | |
// check if the target has an offset, if its NOT undefined then run the code to allow things to scroll |
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
/* ---------------------------------------------------------------------------------------------------------- | |
03 Converts all svg images to inline svgs | |
---------------------------------------------------------------------------------------------------------- */ | |
function imgToSvg(){ | |
jQuery('img.svg').each(function(){ | |
var $img = jQuery(this); | |
var imgID = $img.attr('id'); | |
var imgClass = $img.attr('class'); | |
var imgURL = $img.attr('src'); | |
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
$(document).ready(function() { | |
$(window).smartresize(function(){ | |
// call a function that needs to run on resize | |
homePanel(); | |
}); | |
}); | |
(function($,sr){ | |
// debouncing function from John Hann |
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
var gulp = require('gulp'), | |
// sass = require('gulp-ruby-sass'), | |
compass = require('gulp-compass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
minifycss = require('gulp-minify-css'), | |
jshint = require('gulp-jshint'), | |
uglify = require('gulp-uglify'), | |
imagemin = require('gulp-imagemin'), | |
pngcrush = require('imagemin-pngcrush'), | |
rename = require('gulp-rename'), |