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'; | |
const unfluff = require('unfluff'); | |
const fetch = require('node-fetch'); | |
const TEST_URL = 'http://www.theverge.com/2017/3/17/14957460/the-legend-of-zelda-breath-of-the-wild-nintendo-switch-future-games'; | |
const extract = (html) => { | |
console.log('Got HTML'); | |
const results = unfluff(html); |
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 () { | |
$('iframe').ready(function () { | |
var interval = setInterval(function () { | |
var menuItem = $('iframe').contents().find('.kolorMenuItem')[3]; | |
// Remove dining option if present and clear interval | |
if (menuItem) { | |
menuItem.remove(); |
NewerOlder