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
var osEnvar= { | |
name : null, | |
names: { | |
ios: 'iOS', | |
android: 'Android', | |
webos: 'webOS', | |
blackberry: 'BlackBerry', | |
rimTablet: 'RIMTablet', | |
mac: 'MacOS', | |
win: 'Windows', |
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
/* tooltip using css3 */ | |
http://jsfiddle.net/error454/aaDY9/ | |
http://jsfiddle.net/4Dpa3/ | |
http://jsfiddle.net/tomalex0/8fd6N/1/ | |
/*Pseudo Element z-index fix*/ | |
http://jsfiddle.net/imakewebthings/CceAT/ |
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
var http = require('http'); | |
var fs = require('fs'); | |
var path = require('path'); | |
http.createServer(function (request, response) { | |
console.log('request starting...'); | |
var filePath = '.' + request.url; |
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
var express = require('express'); | |
var app = express(); | |
app.use(express.compress()); | |
app.use(express.static(__dirname)); | |
app.listen(process.env.PORT || 3000); |
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
/** | |
* @author Jacky Nguyen | |
* @class Ux.event.recognizer.MouseWheelDrag | |
* | |
* Ext.Loader.setPath('Ux', '/path/to/your/app/ux'); | |
* | |
* Ext.application({ | |
* // ... | |
* eventPublishers: { | |
* touchGesture: { |
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
var express = require('express'); | |
var app = express(); | |
var path = require('path'); | |
var fs = require('fs'); | |
app.use(express.compress()); | |
app.use(express.static(__dirname)); | |
function readJsonFileSync(filepath, encoding){ |
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
// CSS3 PROPERTIES | |
// -------------------------------------------------- | |
// Border Radius | |
.border-radius(@radius) { | |
-webkit-border-radius: @radius; | |
-moz-border-radius: @radius; | |
border-radius: @radius; | |
} |
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
(function(name, definition, context) { | |
if (typeof module != 'undefined' && module.exports) { | |
module.exports = definition(); | |
} else if (typeof context['define'] == 'function' && context['define']['amd']) { | |
define(definition); | |
} else { | |
context[name] = definition(); | |
} | |
})('myWidget', function() { |
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
.top-box { | |
box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4); | |
} | |
.left-box { | |
box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4); | |
} | |
.right-box { | |
box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4); |
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> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
OlderNewer