This file contains 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
/*! | |
* backbone.cache.js v0.0.2 | |
* Copyright 2012, Boaz Sender (@boazsender) | |
* Based on backbone.collectioncache.js by Tim Branyen (@tbranyen) (https://gist.github.com/gists/3532848/edit) | |
* backbone.cacher.js may be freely distributed under the MIT license. | |
*/ | |
(function(window) { | |
// Dependencies | |
var Backbone = window.Backbone; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Twitter Search Plugin</title> | |
<script src="http://code.jquery.com/jquery.js"></script> | |
<script src="jquery.twitter.js"></script> | |
<style type="text/css"> | |
body { padding: 10px; font-family: sans-serif; } | |
h2 { font-weight: normal; margin-top: 20px; clear: both; } | |
.twitter-posts li { margin-bottom: 10px; font-size: 12px; clear: both; list-style-type:none; } |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Twitter Search Plugin</title> | |
<script src="http://code.jquery.com/jquery.js"></script> | |
<script src="https://github.com/boazsender/jQuery-Twitter-Plugin/blob/master/dist/jquery.twitter.js"></script> | |
<style type="text/css"> | |
.twitter-posts li { margin-bottom: 10px; font-size: 12px; clear: both; list-style-type:none; } | |
.twitter-posts li img { float:left; width: 48px; margin:0px 10px 10px 0px;border:1px solid #c2c2c2; -moz-box-shadow: 0px 0px 4px #c2c2c2; -webkit-box-shadow: 0px 0px 4px #c2c2c2; box-shadow: 0px 0px 4px #c2c2c2; } | |
.twitter-posts li a { text-decoration:none; color: #009; } |