View response-of-oauth.html
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
<!-- The result of the popup window --> | |
<script>opener.ss.user.tw.oauthToken('token-312123123');close();</script> |
View dabblet.css
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
body { | |
background: blue; | |
padding:0; | |
} | |
header { | |
height: 200px; | |
background-color: red; | |
margin: 0; | |
display:block; | |
View when-externs.js
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
/** | |
* @externs | |
* @license MIT License (c) copyright 2011-2013 original author or authors | |
*/ | |
/** | |
* [when description] | |
* @param {[type]} promiseOrValue [description] | |
* @param {Function=} optOnFulfilled [description] | |
* @param {Function=} optOnRejected [description] |
View bootstrap.less
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
@import "variables.less"; | |
@import "generated.less"; | |
@import "styles.less"; |
View phantom.html
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> | |
<!--[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,chrome=1"> |
View LayoutManager beforeRender() and render() callbacks
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
/** | |
* The beforeRender callback scaffolding. | |
* | |
* @param {Backbone.Layout} view The instance of the LayoutManager. | |
* @return {void} Don't care. | |
*/ | |
beforeRender: function( view ) { | |
console.log(view.template); // show the template of the view instance | |
// optionally beforeRender can be async |
View gist:4727303
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
module.exports = function(grunt) { | |
grunt.loadNpmTasks('grunt-exec'); | |
grunt.loadNpmTasks('grunt-shell'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
// Project configuration. | |
grunt.initConfig({ |
View gist:4706309
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
requirejs = require('requirejs'), | |
LayoutManager = require("backbone.layoutmanager"), | |
hbsCompiled; | |
requirejs(['handlebars-helpers'], function(){ | |
hbsCompiled = require('../static/js/templates/hbsCompiled'); | |
var hand = require('Handlebars'); | |
}); | |
LayoutManager.configure({ |
View gist:4595043
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
/** | |
* Checks if the define process is running | |
* @param {string} process The process. | |
* @param {function(boolean)} The result of the operation. | |
* @return {void} | |
*/ | |
function isRunning(process, cb) { | |
var checkCommand = 'ps x|grep ' + process + '|grep -v grep|awk \'{print $1}\''; | |
var execOptions = {}; |
View dabblet.css
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
body { | |
background: blue; | |
padding:0; | |
} | |
header { | |
height: 200px; | |
background-color: red; | |
margin: 0; | |
display:block; | |
overflow: hidden; |