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
(function(window){ | |
var Pen = function(context){ | |
var drawing; | |
this.reset = function(){ | |
context.beginPath(); | |
context.lineCap = 'round'; | |
context.lineWidth = 5; | |
context.strokeStyle = "#333333"; | |
}; |
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
'use strict'; | |
angular.module('angularApp') | |
.directive('connectivity', ($window, $parse) -> | |
return ($scope, element, $attrs) -> | |
# Parse attribute value into JSON | |
events = $scope.$eval($attrs.connectivity) | |
# Loop through events in JSON object |
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
/* | |
Vertical Ticker Plugin | |
Copyright (c) 2011 Zach Dunn / www.onemightyroar.com | |
Released under MIT License | |
-------------------------- | |
Structure based on Doug Neiner's jQuery plugin blueprint: http://starter.pixelgraphics.us/ | |
*/ | |
(function( $ ){ | |
if(!$.omr){ |
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
<?php | |
//Take a text file of video ID codes and output them as links | |
ini_set('auto_detect_line_endings', true); | |
class Link_Builder | |
{ | |
public $website; /* Name (slug) of site */ | |
public $base_url; | |
public $file_location; |
NewerOlder