订单类型 | 订单号 |
---|
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
!!! 5 | |
//if lt IE 7 | |
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> | |
//if IE 7 | |
<html class="no-js lt-ie9 lt-ie8"> | |
//if IE 8 | |
<html class="no-js lt-ie9"> | |
//[if gt IE 8]><! | |
html(class='no-js') | |
//<![endif] |
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
/*global describe, beforeEach, afterEach, it */ | |
'use strict'; | |
(function () { | |
describe('Phone Message Validator Plugin', function () { | |
beforeEach(function() { | |
var fixture = [ | |
'<form method="post" action=".">', | |
'<button>Get Verify Code</button>', | |
'<span class="message hide">message sent, wait <span class="countdown"></span>', | |
'<input class="code" type="text"/>', |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Review vertical-align</title> | |
<style> | |
.icon-x { display: inline-block; width: 50px; height: 50px; vertical-align:middle; } | |
</style> | |
</head> | |
<body> |
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 fs = require("fs") | |
var ssl_options = { | |
key: fs.readFileSync('privatekey.pem'), | |
cert: fs.readFileSync('certificate.pem') | |
}; | |
var port = process.env.PORT || 3000; | |
var express = require('express'); | |
var ejs = require('ejs'); | |
var passport = require('passport') |
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
// prevent repeat animation | |
$('#demo').stop().animate({...}); |
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
/** | |
* @see http://goo.gl/meG1Z | |
*/ | |
.hide-text { | |
text-indent: 100%; | |
white-space: nowrap; | |
overflow: hidden; | |
} | |
/** |
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
<!-- | |
better name: wrapper -> roll | |
--> | |
<div class="slides"> | |
<div class="wrapper"> | |
<div class="slide"> | |
<img src="images/order-1.jpg" alt="" class="thumb" /> | |
</div> | |
<div class="slide"> | |
<img src="images/order-2.jpg" alt="" class="thumb" /> |
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
/** | |
* From twitter bootstrap | |
*/ | |
popoverArrowOuterWidth = 10px | |
popoverArrowWidth = 9px | |
popoverArrowOuterColor = #CCC | |
popoverArrowColor = #FFF | |
.popover | |
position: absolute |
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
/** | |
* fall back in IE < 9 | |
* Set background alone if using Compass's css sprites, or IE8 will fail | |
* all background-image styles, for it doesn't support :checked | |
*/ | |
input[type="radio"] { | |
display: none; | |
} | |
input[type="radio"] + label { | |
padding-left: 15px; |