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
describe('iPhone', function() { | |
it('should construct an instance of iphone analytics', function() { | |
spyOn(window, 'iPhoneAnalytics'); | |
analytics.install(); | |
expect(window.iPhoneAnalytics).toHaveBeenCalled(); | |
}); | |
}); |
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
= stylesheet_link_tag 'blueprint-1.0/screen.css', :rel => 'stylesheet', :type => 'text/css', :media => 'screen, projection' | |
= stylesheet_link_tag 'blueprint-1.0/print.css', :rel => 'stylesheet', :type => 'text/css', :media => 'print' | |
<!--[if lt IE 8]> | |
= stylesheet_link_tag 'blueprint-1.0/ie.css', :rel => 'stylesheet', :type => 'text/css', :media => 'screen, projection' | |
<![endif]--> |
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
<script src="http://widgets.twimg.com/j/2/widget.js"></script> | |
<script> | |
new TWTR.Widget({ | |
version: 2, | |
type: 'profile', | |
rpp: 6, | |
interval: 6000, | |
width: 'auto', | |
height: 300, | |
theme: { |
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="all_builds" style="width: 800px; height: 600px; position: relative;"></div> |
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() { | |
var builds = [ | |
{ url: "/build_results/start", | |
legend: "Start" | |
} | |
]; | |
$.each(builds, function(build_index, build) { | |
$.get(build.url, function(data) { |