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
/** | |
* @author github user pwfff | |
* cleanup by github user sartaj | |
*/ | |
// Go To flapmmo.com | |
// Open Web Inspector | |
// Go to sources tab | |
// On the side bar, find main.js | |
// Pretty Print main.js (in Chrome, its the curly bracket symbol on the bottom) |
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
/** | |
* Exercise 0: angryGandalf (example) | |
**/ | |
// Define angryGandalf with input parameters | |
var angryGandalf = function(type) { | |
// Define the variables needed | |
var message; | |
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
/** | |
* Exercise 0: angryGandalf (example) | |
**/ | |
// Define angryGandalf with input parameters | |
var angryGandalf = function(type) { | |
// Define the variables needed | |
var message; | |
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
/* | |
* superBowlLineup Object | |
*/ | |
var superBowlLineup = { | |
date: "1/27/2014", | |
fireworksUsed: 534, | |
lightShow: true, | |
bands: [ | |
{ |
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
$('.filter-button').on('click', function(e) { | |
var button = $(this).attr('id'); | |
if ( $(this).hasClass('active')) { | |
hideTheseImages(button); | |
} else { |
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
[{ | |
"section": "Bubbles", | |
"content": [{ | |
"dish": "aria brut cava, spain, nv", | |
"price": "8/30" | |
}, { | |
"dish": "cruzat brut, mendoza, nv", | |
"price": "12/46" | |
}, { | |
"dish": "plouzeau brut rose loire valley, nv", |
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
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<meta name="description" content=""> |
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
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> | |
<html class="no-js"> | |
<!--<![endif]--> | |
<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
{} |
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
type style = ReactDOMRe.Style.t; | |
type element = React.element; | |
module Breadcrumb = { | |
[@bs.module "antd"] [@react.component] | |
external make: | |
(~ariaLabel: string=?, ~key: string=?, ~style: style=?, ~children: 'b) => | |
element = | |
"Breadcrumb"; |