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="poker_clock" class="clearfix"> | |
| <h1>~ Carey's Casino ~</h1> | |
| <div id="poker_play_pause"> | |
| <span>Play/Pause</span> | |
| <a href="#" title="Play/Pause" class="play"> | |
| <span></span> | |
| </a> | |
| </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
| <canvas id="game" width="600" height="600"></canvas> |
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 debounce(func, threshold) { | |
| var timeout; | |
| return function() { | |
| var context = this, | |
| args = arguments; | |
| if (timeout) { | |
| clearTimeout(timeout); | |
| } |
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> | |
| <html> | |
| <head> | |
| <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> | |
| <link href="//netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <section> | |
| <div class="page-header"> |
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
| /** | |
| * Define console.log if doesn't exist | |
| * Add a wrapper around console.log | |
| * | |
| * usage: log('inside coolFunc',this,arguments); | |
| * http://paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/ | |
| */ | |
| if (typeof console === "undefined"){ | |
| window.console = {}; | |
| window.console.log = function(){}; |
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
| Ext.define('PICS.model.report.Report', { | |
| extend: 'Ext.data.Model', | |
| requires: [ | |
| 'PICS.model.report.Column', | |
| 'PICS.model.report.Filter', | |
| 'PICS.model.report.Sort' | |
| ], | |
| fields: [{ | |
| name: 'type', |
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
| ### | |
| 1. Click on element | |
| 2. Load the locales | |
| angular.element($0).injector().get("geLocale").load("en-gb") | |
| angular.element($0).injector().get("geLocale").load("en-us") | |
| 3. Locale of ngLocale should be set at en-us since that was the last loaded locale |
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
| $.ajax({ | |
| url: 'https://gist.github.com/chemoish/9671600.json?callback=loadGist', | |
| dataType: 'jsonp', | |
| success: function (data, textStatus, jqXHR) { | |
| document.write('<link rel="stylesheet" href="//gist.github.com' + data.stylesheet + '" />'); | |
| document.write(data.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
| updateIframe = function (href, key) { | |
| if ($('#scrape').length == 0) { | |
| $('body').append('<iframe id="scrape">'); | |
| } | |
| console.warn('<iframe id="scrape" src="' + href + '">'); | |
| $('#scrape').replaceWith('<iframe id="scrape" src="' + href + '">'); | |
| setTimeout(function () { |
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
| ### | |
| @name Bump Stage | |
| @description | |
| Create tags for stage environment based on alias. Note: the tag is missing a prefix of 'v' | |
| due to a limitation of debian packaging. | |
| @param dry-run Log out next stage tag | |
| @example | |
| grunt tag:stage --dry-run |
OlderNewer