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 (Backbone) { | |
// Store blank stuff here | |
var blankEl = $() | |
, blankModel = new Backbone.Model.extend() | |
, blankCollection = new Backbone.Collection.extend({ | |
model: blankModel | |
}) | |
, blankView = new Backbone.View.extend({ | |
el: blankEl | |
}) |
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 | |
/* | |
Template Name: Comment Graph | |
*/ | |
?> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8> |
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
// Plugin | |
$.fn.iWouldLikeToAbsolutelyPositionThingsInsideOfFrickingTableCellsPlease = function() { | |
var $el; | |
return this.each(function() { | |
$el = $(this); | |
var newDiv = $("<div />", { | |
"class": "innerWrapper", | |
"css" : { | |
"height" : $el.height(), | |
"width" : "100%", |
NewerOlder