├── .gitignore ├── _includes ├── html │ ├── doctype.html │ ├── lang.html │ ├── encoding.html │ ├── reducing_markup.html │ ├── ie_compatibility_mode.html │ ├── attribute_order.html │ ├── boolean_attributes.html │ ├── syntax.html │ └── external_css_js.html ├── javascripts │ ├── comments_multiline.js │ ├── indentation.js │ ├── quote_marks.js │ ├── brace.js │ ├── literal_value_undefined.js │ ├── semicolon.js │ ├── comments_single_line.js │ ├── array_object.js │ ├── variable_declaration.js │ ├── literal_value_null.js │ ├── variable_naming.js │ ├── comments_documentation.js │ ├── miscellaneous.js │ ├── new_line.js │ ├── space.js │ ├── function.js │ ├── blank_line.js │ └── jshint.js ├── check │ ├── grunt_jscs_globals.json │ ├── sublime_setting_user.json │ ├── grunt_jshint.js │ ├── grunt_csslint.js │ ├── grunt_scsslint.js │ └── grunt_jscs.js ├── css │ ├── semicolon.css │ ├── quote_marks.css │ ├── indentation.css │ ├── color.css │ ├── media_queries.css │ ├── comments.css │ ├── shorthand.css │ ├── blank_line.css │ ├── new_line.css │ ├── naming.css │ ├── scss.css │ ├── declaration-order.css │ ├── space.css │ ├── miscellaneous.css │ └── declaration-order.js ├── external_js.html ├── header.html ├── footer.html ├── naming_rules.html ├── directory.html ├── html_rules.html ├── css_rules.html ├── check.html └── js_rules.html ├── images ├── up.png ├── demo_1.png └── demo_2.png ├── fonts ├── fontello.eot ├── fontello.ttf ├── fontello.woff └── fontello.svg ├── .editorconfig ├── 404.html ├── _config.yml ├── styles ├── style.css └── code_guide.css ├── .jshintrc ├── index.html ├── jsformat_setting_user.json ├── .csslintrc ├── README.md ├── _layouts └── default.html ├── javascripts ├── jquery_scrolltotop.js └── jquery_2.1.4_min.js ├── LICENSE.md ├── .jscsrc ├── .scss-lint.yml └── csscomb_setting_user.json /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | -------------------------------------------------------------------------------- /_includes/html/doctype.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ... 4 | 5 | -------------------------------------------------------------------------------- /images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/images/up.png -------------------------------------------------------------------------------- /_includes/html/lang.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | ... 4 | 5 | -------------------------------------------------------------------------------- /fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/fonts/fontello.eot -------------------------------------------------------------------------------- /fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/fonts/fontello.ttf -------------------------------------------------------------------------------- /fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/fonts/fontello.woff -------------------------------------------------------------------------------- /images/demo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/images/demo_1.png -------------------------------------------------------------------------------- /images/demo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlloyTeam/CodeGuide/HEAD/images/demo_2.png -------------------------------------------------------------------------------- /_includes/javascripts/comments_multiline.js: -------------------------------------------------------------------------------- 1 | /* 2 | * one space after '*' 3 | */ 4 | var x = 1; 5 | -------------------------------------------------------------------------------- /_includes/check/grunt_jscs_globals.json: -------------------------------------------------------------------------------- 1 | { 2 | "globals": { 3 | "ImageHandle": true 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /_includes/check/sublime_setting_user.json: -------------------------------------------------------------------------------- 1 | { 2 | "translate_tabs_to_spaces": true, 3 | "word_wrap": true 4 | } 5 | -------------------------------------------------------------------------------- /_includes/css/semicolon.css: -------------------------------------------------------------------------------- 1 | .element { 2 | width: 20px; 3 | height: 20px; 4 | 5 | background-color: red; 6 | } 7 | -------------------------------------------------------------------------------- /_includes/javascripts/indentation.js: -------------------------------------------------------------------------------- 1 | var x = 1, 2 | y = 1; 3 | 4 | if (x < y) { 5 | x += 10; 6 | } else { 7 | x += 1; 8 | } 9 | -------------------------------------------------------------------------------- /_includes/javascripts/quote_marks.js: -------------------------------------------------------------------------------- 1 | // not good 2 | var x = "test"; 3 | 4 | // good 5 | var y = 'foo', 6 | z = '
'; 7 | -------------------------------------------------------------------------------- /_includes/check/grunt_jshint.js: -------------------------------------------------------------------------------- 1 | { 2 | options: { 3 | jshintrc: true 4 | }, 5 | files: { 6 | src: [...] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /_includes/html/encoding.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ... 7 | 8 | -------------------------------------------------------------------------------- /_includes/javascripts/brace.js: -------------------------------------------------------------------------------- 1 | // not good 2 | if (condition) 3 | doSomething(); 4 | 5 | // good 6 | if (condition) { 7 | doSomething(); 8 | } 9 | -------------------------------------------------------------------------------- /_includes/check/grunt_csslint.js: -------------------------------------------------------------------------------- 1 | { 2 | options: { 3 | csslintrc: '.csslintrc' 4 | }, 5 | files: { 6 | src: [...] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /_includes/check/grunt_scsslint.js: -------------------------------------------------------------------------------- 1 | { 2 | options: { 3 | config: '.scss-lint.yml' 4 | }, 5 | files: { 6 | src: [...] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /_includes/css/quote_marks.css: -------------------------------------------------------------------------------- 1 | .element:after { 2 | content: ""; 3 | background-image: url("logo.png"); 4 | } 5 | 6 | li[data-type="single"] { 7 | ... 8 | } 9 | -------------------------------------------------------------------------------- /_includes/check/grunt_jscs.js: -------------------------------------------------------------------------------- 1 | { 2 | options: { 3 | config: true, 4 | verbose: true 5 | }, 6 | files: { 7 | src: [...] 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /_includes/html/reducing_markup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /_includes/html/ie_compatibility_mode.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ... 7 | 8 | -------------------------------------------------------------------------------- /_includes/html/attribute_order.html: -------------------------------------------------------------------------------- 1 | Example link 2 | 3 | 4 | 5 | ... 6 | -------------------------------------------------------------------------------- /_includes/html/boolean_attributes.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /_includes/javascripts/literal_value_undefined.js: -------------------------------------------------------------------------------- 1 | // not good 2 | if (person === undefined) { 3 | ... 4 | } 5 | 6 | // good 7 | if (typeof person === 'undefined') { 8 | ... 9 | } 10 | -------------------------------------------------------------------------------- /_includes/javascripts/semicolon.js: -------------------------------------------------------------------------------- 1 | /* var declaration */ 2 | var x = 1; 3 | 4 | /* expression statement */ 5 | x++; 6 | 7 | /* do-while */ 8 | do { 9 | x++; 10 | } while (x < 10); 11 | -------------------------------------------------------------------------------- /_includes/css/indentation.css: -------------------------------------------------------------------------------- 1 | .element { 2 | position: absolute; 3 | top: 10px; 4 | left: 10px; 5 | 6 | border-radius: 10px; 7 | width: 50px; 8 | height: 50px; 9 | } 10 | -------------------------------------------------------------------------------- /_includes/javascripts/comments_single_line.js: -------------------------------------------------------------------------------- 1 | if (condition) { 2 | // if you made it here, then all security checks passed 3 | allowed(); 4 | } 5 | 6 | var zhangsan = 'zhangsan'; // one space after code 7 | -------------------------------------------------------------------------------- /_includes/css/color.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element { 3 | color: #ABCDEF; 4 | background-color: #001122; 5 | } 6 | 7 | /* good */ 8 | .element { 9 | color: #abcdef; 10 | background-color: #012; 11 | } 12 | -------------------------------------------------------------------------------- /_includes/javascripts/array_object.js: -------------------------------------------------------------------------------- 1 | // not good 2 | var a = { 3 | 'b': 1 4 | }; 5 | 6 | var a = {b: 1}; 7 | 8 | var a = { 9 | b: 1, 10 | c: 2, 11 | }; 12 | 13 | // good 14 | var a = { 15 | b: 1, 16 | c: 2 17 | }; 18 | -------------------------------------------------------------------------------- /_includes/external_js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | -------------------------------------------------------------------------------- /_includes/css/media_queries.css: -------------------------------------------------------------------------------- 1 | .element { 2 | ... 3 | } 4 | 5 | .element-avatar{ 6 | ... 7 | } 8 | 9 | @media (min-width: 480px) { 10 | .element { 11 | ... 12 | } 13 | 14 | .element-avatar { 15 | ... 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /_includes/css/comments.css: -------------------------------------------------------------------------------- 1 | /* Modal header */ 2 | .modal-header { 3 | ... 4 | } 5 | 6 | /* 7 | * Modal header 8 | */ 9 | .modal-header { 10 | ... 11 | } 12 | 13 | .modal-header { 14 | /* 50px */ 15 | width: 50px; 16 | 17 | color: red; /* color red */ 18 | } 19 | -------------------------------------------------------------------------------- /_includes/html/syntax.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Page title 5 | 6 | 7 | Company 8 | 9 |

Hello, world!

10 | 11 | 12 | -------------------------------------------------------------------------------- /_includes/css/shorthand.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element { 3 | transition: opacity 1s linear 2s; 4 | } 5 | 6 | /* good */ 7 | .element { 8 | transition-delay: 2s; 9 | transition-timing-function: linear; 10 | transition-duration: 1s; 11 | transition-property: opacity; 12 | } 13 | -------------------------------------------------------------------------------- /_includes/javascripts/variable_declaration.js: -------------------------------------------------------------------------------- 1 | function doSomethingWithItems(items) { 2 | // use one var 3 | var value = 10, 4 | result = value + 10, 5 | i, 6 | len; 7 | 8 | for (i = 0, len = items.length; i < len; i++) { 9 | result += 10; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | title: "404 - File Not Found" 4 | permalink: /404.html 5 | --- 6 |
7 |
8 |

We could not find that page

9 |

10 | Please check that the link you used is correct. 11 |

12 |
13 |
14 | -------------------------------------------------------------------------------- /_includes/css/blank_line.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element { 3 | ... 4 | } 5 | .dialog { 6 | color: red; 7 | &:after { 8 | ... 9 | } 10 | } 11 | 12 | /* good */ 13 | .element { 14 | ... 15 | } 16 | 17 | .dialog { 18 | color: red; 19 | 20 | &:after { 21 | ... 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /_includes/html/external_css_js.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | -------------------------------------------------------------------------------- /_includes/css/new_line.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element 3 | {color: red; background-color: black;} 4 | 5 | /* good */ 6 | .element { 7 | color: red; 8 | background-color: black; 9 | } 10 | 11 | /* not good */ 12 | .element, .dialog { 13 | ... 14 | } 15 | 16 | /* good */ 17 | .element, 18 | .dialog { 19 | ... 20 | } 21 | -------------------------------------------------------------------------------- /_includes/javascripts/literal_value_null.js: -------------------------------------------------------------------------------- 1 | // not good 2 | function test(a, b) { 3 | if (b === null) { 4 | // not mean b is not supply 5 | ... 6 | } 7 | } 8 | 9 | var a; 10 | 11 | if (a === null) { 12 | ... 13 | } 14 | 15 | // good 16 | var a = null; 17 | 18 | if (a === null) { 19 | ... 20 | } 21 | -------------------------------------------------------------------------------- /_includes/javascripts/variable_naming.js: -------------------------------------------------------------------------------- 1 | var thisIsMyName; 2 | 3 | var goodID; 4 | 5 | var reportURL; 6 | 7 | var AndroidVersion; 8 | 9 | var iOSVersion; 10 | 11 | var MAX_COUNT = 10; 12 | 13 | function Person(name) { 14 | this.name = name; 15 | } 16 | 17 | // not good 18 | var body = $('body'); 19 | 20 | // good 21 | var $body = $('body'); 22 | -------------------------------------------------------------------------------- /_includes/css/naming.css: -------------------------------------------------------------------------------- 1 | /* class */ 2 | .element-content { 3 | ... 4 | } 5 | 6 | /* id */ 7 | #myDialog { 8 | ... 9 | } 10 | 11 | /* 变量 */ 12 | $colorBlack: #000; 13 | 14 | /* 函数 */ 15 | @function pxToRem($px) { 16 | ... 17 | } 18 | 19 | /* 混合 */ 20 | @mixin centerBlock { 21 | ... 22 | } 23 | 24 | /* placeholder */ 25 | %myDialog { 26 | ... 27 | } 28 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | name: Code Guide by @AlloyTeam 2 | description: Standards for developing flexible, durable, and sustainable HTML and CSS, and maintainable JavaScript 3 | url: https://github.com/AlloyTeam/CodeGuide 4 | 5 | include: [".editorconfig", ".jscsrc", ".jshintrc", ".csslintrc", ".scss-lint.yml"] 6 | 7 | markdown: rdiscount 8 | permalink: pretty 9 | pygments: true 10 | -------------------------------------------------------------------------------- /_includes/css/scss.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | @import "_dialog.scss"; 3 | 4 | /* good */ 5 | @import "dialog"; 6 | 7 | /* not good */ 8 | .fatal { 9 | @extend .error; 10 | } 11 | 12 | /* good */ 13 | .fatal { 14 | @extend %error; 15 | } 16 | 17 | /* not good */ 18 | .element { 19 | & > .dialog { 20 | ... 21 | } 22 | } 23 | 24 | /* good */ 25 | .element { 26 | > .dialog { 27 | ... 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- 1 | #toTop { 2 | display: none; 3 | 4 | position: fixed; 5 | right: 5px; 6 | bottom: 5px; 7 | 8 | width: 128px; 9 | height: 128px; 10 | 11 | background-image: url("../images/up.png"); 12 | background-repeat: no-repeat; 13 | 14 | opacity: .4; 15 | 16 | filter: alpha(opacity=40); /* For IE8 and earlier */ 17 | } 18 | #toTop:hover { 19 | opacity: .8; 20 | 21 | filter: alpha(opacity=80); /* For IE8 and earlier */ 22 | } 23 | -------------------------------------------------------------------------------- /_includes/css/declaration-order.css: -------------------------------------------------------------------------------- 1 | .declaration-order { 2 | display: block; 3 | float: right; 4 | 5 | position: absolute; 6 | top: 0; 7 | right: 0; 8 | bottom: 0; 9 | left: 0; 10 | z-index: 100; 11 | 12 | border: 1px solid #e5e5e5; 13 | border-radius: 3px; 14 | width: 100px; 15 | height: 100px; 16 | 17 | font: normal 13px "Helvetica Neue", sans-serif; 18 | line-height: 1.5; 19 | text-align: center; 20 | 21 | color: #333; 22 | background-color: #f5f5f5; 23 | 24 | opacity: 1; 25 | } 26 | -------------------------------------------------------------------------------- /_includes/javascripts/comments_documentation.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @func 3 | * @desc 一个带参数的函数 4 | * @param {string} a - 参数a 5 | * @param {number} b=1 - 参数b默认值为1 6 | * @param {string} c=1 - 参数c有两种支持的取值
1—表示x
2—表示xx 7 | * @param {object} d - 参数d为一个对象 8 | * @param {string} d.e - 参数d的e属性 9 | * @param {string} d.f - 参数d的f属性 10 | * @param {object[]} g - 参数g为一个对象数组 11 | * @param {string} g.h - 参数g数组中一项的h属性 12 | * @param {string} g.i - 参数g数组中一项的i属性 13 | * @param {string} [j] - 参数j是一个可选参数 14 | */ 15 | function foo(a, b, c, d, g, j) { 16 | ... 17 | } 18 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "forin": true, 5 | "freeze": true, 6 | "globals": { 7 | 8 | }, 9 | "latedef": true, 10 | "maxerr": 200, 11 | "nonew": true, 12 | "shadow": "inner", 13 | "singleGroups": true, 14 | "undef": true, 15 | "unused": true, 16 | 17 | "evil": true, 18 | "expr": true, 19 | "proto": true, 20 | "scripturl": true, 21 | "sub": true, 22 | 23 | "browser": true, 24 | "devel": true, 25 | "jquery": true, 26 | "nonstandard": true, 27 | "typed": true, 28 | "worker": true 29 | } 30 | -------------------------------------------------------------------------------- /_includes/javascripts/miscellaneous.js: -------------------------------------------------------------------------------- 1 | // not good 2 | var a = 1; 3 | 4 | function Person() { 5 | // not good 6 | var me = this; 7 | 8 | // good 9 | var _this = this; 10 | 11 | // good 12 | var that = this; 13 | 14 | // good 15 | var self = this; 16 | } 17 | 18 | // good 19 | switch (condition) { 20 | case 1: 21 | case 2: 22 | ... 23 | break; 24 | case 3: 25 | ... 26 | // why fall through 27 | case 4 28 | ... 29 | break; 30 | // why no default 31 | } 32 | 33 | // not good with empty block 34 | if (condition) { 35 | 36 | } 37 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 6 | 7 | {% include directory.html %} 8 | 9 |
10 |
11 |

最佳原则

12 |

坚持制定好的代码规范。

13 |

无论团队人数多少,代码应该同出一门。

14 |

如果你想要为这个规范做贡献或觉得有不合理的地方,请访问New Issue

15 |
16 |
17 | 18 | {% include naming_rules.html %} 19 | 20 | {% include html_rules.html %} 21 | 22 | {% include css_rules.html %} 23 | 24 | {% include js_rules.html %} 25 | 26 | {% include check.html %} 27 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |

{{ site.name }}

5 |

{{ site.description }}

6 |

通过分析github代码库总结出来的工程师代码书写习惯:GO!!!

7 | 8 | 16 |
17 |
18 | -------------------------------------------------------------------------------- /jsformat_setting_user.json: -------------------------------------------------------------------------------- 1 | { 2 | "indent_size": 4, 3 | "indent_char": " ", 4 | "eol": "\n", 5 | "indent_level": 0, 6 | "indent_with_tabs": false, 7 | "preserve_newlines": true, 8 | "max_preserve_newlines": 10, 9 | "jslint_happy": false, 10 | "space_after_anon_function": false, 11 | "brace_style": "collapse", 12 | "keep_array_indentation": false, 13 | "keep_function_indentation": false, 14 | "space_before_conditional": true, 15 | "break_chained_methods": false, 16 | "eval_code": false, 17 | "unescape_strings": false, 18 | "wrap_line_length": 0, 19 | "wrap_attributes": "auto", 20 | "wrap_attributes_indent_size": 4, 21 | "end_with_newline": true 22 | } 23 | -------------------------------------------------------------------------------- /_includes/javascripts/new_line.js: -------------------------------------------------------------------------------- 1 | // not good 2 | var a = { 3 | b: 1 4 | , c: 2 5 | }; 6 | 7 | x = y 8 | ? 1 : 2; 9 | 10 | // good 11 | var a = { 12 | b: 1, 13 | c: 2 14 | }; 15 | 16 | x = y ? 1 : 2; 17 | x = y ? 18 | 1 : 2; 19 | 20 | // no need line break with 'else', 'catch', 'finally' 21 | if (condition) { 22 | ... 23 | } else { 24 | ... 25 | } 26 | 27 | try { 28 | ... 29 | } catch (e) { 30 | ... 31 | } finally { 32 | ... 33 | } 34 | 35 | // not good 36 | function test() 37 | { 38 | ... 39 | } 40 | 41 | // good 42 | function test() { 43 | ... 44 | } 45 | 46 | // not good 47 | var a, foo = 7, b, 48 | c, bar = 8; 49 | 50 | // good 51 | var a, 52 | foo = 7, 53 | b, c, bar = 8; 54 | -------------------------------------------------------------------------------- /_includes/javascripts/space.js: -------------------------------------------------------------------------------- 1 | // not good 2 | var a = { 3 | b :1 4 | }; 5 | 6 | // good 7 | var a = { 8 | b: 1 9 | }; 10 | 11 | // not good 12 | ++ x; 13 | y ++; 14 | z = x?1:2; 15 | 16 | // good 17 | ++x; 18 | y++; 19 | z = x ? 1 : 2; 20 | 21 | // not good 22 | var a = [ 1, 2 ]; 23 | 24 | // good 25 | var a = [1, 2]; 26 | 27 | // not good 28 | var a = ( 1+2 )*3; 29 | 30 | // good 31 | var a = (1 + 2) * 3; 32 | 33 | // no space before '(', one space before '{', one space between function parameters 34 | var doSomething = function(a, b, c) { 35 | // do something 36 | }; 37 | 38 | // no space before '(' 39 | doSomething(item); 40 | 41 | // not good 42 | for(i=0;i<6;i++){ 43 | x++; 44 | } 45 | 46 | // good 47 | for (i = 0; i < 6; i++) { 48 | x++; 49 | } 50 | -------------------------------------------------------------------------------- /_includes/css/space.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element { 3 | color :red! important; 4 | background-color: rgba(0,0,0,.5); 5 | } 6 | 7 | /* good */ 8 | .element { 9 | color: red !important; 10 | background-color: rgba(0, 0, 0, .5); 11 | } 12 | 13 | /* not good */ 14 | .element , 15 | .dialog{ 16 | ... 17 | } 18 | 19 | /* good */ 20 | .element, 21 | .dialog { 22 | 23 | } 24 | 25 | /* not good */ 26 | .element>.dialog{ 27 | ... 28 | } 29 | 30 | /* good */ 31 | .element > .dialog{ 32 | ... 33 | } 34 | 35 | /* not good */ 36 | .element{ 37 | ... 38 | } 39 | 40 | /* good */ 41 | .element { 42 | ... 43 | } 44 | 45 | /* not good */ 46 | @if{ 47 | ... 48 | }@else{ 49 | ... 50 | } 51 | 52 | /* good */ 53 | @if { 54 | ... 55 | } @else { 56 | ... 57 | } 58 | -------------------------------------------------------------------------------- /.csslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "box-model": false, 3 | "adjoining-classes": false, 4 | "box-sizing": false, 5 | "compatible-vendor-prefixes": false, 6 | "gradients": false, 7 | "text-indent": false, 8 | "fallback-colors": false, 9 | "star-property-hack": false, 10 | "underscore-property-hack": false, 11 | "bulletproof-font-face": false, 12 | "font-faces": false, 13 | "import": false, 14 | "regex-selectors": false, 15 | "universal-selector": false, 16 | "unqualified-attributes": false, 17 | "overqualified-elements": false, 18 | "duplicate-background-images": false, 19 | "floats": false, 20 | "font-sizes": false, 21 | "ids": false, 22 | "important": false, 23 | "outline-none": false, 24 | "qualified-headings": false, 25 | "unique-headings": false 26 | } 27 | -------------------------------------------------------------------------------- /_includes/javascripts/function.js: -------------------------------------------------------------------------------- 1 | // no space before '(', but one space before'{' 2 | var doSomething = function(item) { 3 | // do something 4 | }; 5 | 6 | function doSomething(item) { 7 | // do something 8 | } 9 | 10 | // not good 11 | doSomething (item); 12 | 13 | // good 14 | doSomething(item); 15 | 16 | // requires parentheses around immediately invoked function expressions 17 | (function() { 18 | return 1; 19 | })(); 20 | 21 | // not good 22 | [1, 2].forEach(function x() { 23 | ... 24 | }); 25 | 26 | // good 27 | [1, 2].forEach(function() { 28 | ... 29 | }); 30 | 31 | // not good 32 | var a = [1, 2, function a() { 33 | ... 34 | }]; 35 | 36 | // good 37 | var a = [1, 2, function() { 38 | ... 39 | }]; 40 | 41 | // use ', ' between function parameters 42 | var doSomething = function(a, b, c) { 43 | // do something 44 | }; 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CodeGuide 2 | ## AlloyTeam代码规范 3 | 4 | ### 1. 为什么要有团队代码规范? 5 | 虽然这些细节是小事,不会有体验或者性能上的优化,但是却体现了一个coder和团队的专业程度 6 | 团队的愿景:成为业界卓越的Web团队! 7 | 所以不管团队有多少人,代码风格都应该师出同门! 8 | 9 | ### 2. 如何使用? 10 | 在使用之前花一点时间把[规范](http://alloyteam.github.io/CodeGuide/)看一遍是很必要的, 11 | 然后按照[这里](http://alloyteam.github.io/CodeGuide/#check)的步骤配置好编辑器和构建检查(目前仅提供了sublime3和grunt的配置) 12 | 13 | 主要使用到了jscs,jshint,sass-lint,csslint 四个规范检查插件, 14 | JsFormat(它其实用的是jsbeautifier),CSScomb两个格式化的插件, 15 | 使用其他编辑器的话可以自己去搜一下相关的这些插件。 16 | 17 | 配置好后,保存的时候可以看到不合规范的代码行前面有明显的提示: 18 | ![](http://alloyteam.github.io/CodeGuide/images/demo_1.png) 19 | 20 | 将光标移到该行,可以在状态栏中看到详细的错误信息: 21 | ![](http://alloyteam.github.io/CodeGuide/images/demo_2.png) 22 | 23 | 建议在修改这些错误之前,js文件用JsFormat格式化一下(ctrl+alt+f),css文件用CSScomb格式化一下(ctrl+shift+c),可以减少很多工作量。 24 | 25 | ### 3. 觉得不合理或者有遗漏的地方? 26 | 如果觉得有不合理或者遗漏的地方,请访问[这里](https://github.com/AlloyTeam/CodeGuide/issues/new)! 27 | 28 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {{ site.name }} 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | {% include header.html %} 21 | 22 | {{ content }} 23 | 24 | {% include footer.html %} 25 | 26 | {% include external_js.html %} 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /javascripts/jquery_scrolltotop.js: -------------------------------------------------------------------------------- 1 | /*! 2 | jQuery scrollTopTop v1.0 - 2013-03-15 3 | (c) 2013 Yang Zhao - geniuscarrier.com 4 | license: http://www.opensource.org/licenses/mit-license.php 5 | */ 6 | (function($) { 7 | $.fn.scrollToTop = function(options) { 8 | var config = { 9 | "speed" : 400 10 | }; 11 | 12 | if (options) { 13 | $.extend(config, { 14 | "speed" : options 15 | }); 16 | } 17 | 18 | return this.each(function() { 19 | 20 | var $this = $(this); 21 | 22 | $(window).scroll(function() { 23 | if ($(this).scrollTop() > 100) { 24 | $this.fadeIn(); 25 | } else { 26 | $this.fadeOut(); 27 | } 28 | }); 29 | 30 | $this.click(function(e) { 31 | e.preventDefault(); 32 | $("body, html").animate({ 33 | scrollTop : 600 34 | }, config.speed); 35 | }); 36 | 37 | }); 38 | }; 39 | })(jQuery); 40 | -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /_includes/javascripts/blank_line.js: -------------------------------------------------------------------------------- 1 | // need blank line after variable declaration 2 | var x = 1; 3 | 4 | // not need blank line when variable declaration is last expression in the current block 5 | if (x >= 1) { 6 | var y = x + 1; 7 | } 8 | 9 | var a = 2; 10 | 11 | // need blank line before line comment 12 | a++; 13 | 14 | function b() { 15 | // not need blank line when comment is first line of block 16 | return a; 17 | } 18 | 19 | // need blank line after blocks 20 | for (var i = 0; i < 2; i++) { 21 | if (true) { 22 | return false; 23 | } 24 | 25 | continue; 26 | } 27 | 28 | var obj = { 29 | foo: function() { 30 | return 1; 31 | }, 32 | 33 | bar: function() { 34 | return 2; 35 | } 36 | }; 37 | 38 | // not need blank line when in argument list, array, object 39 | func( 40 | 2, 41 | function() { 42 | a++; 43 | }, 44 | 3 45 | ); 46 | 47 | var foo = [ 48 | 2, 49 | function() { 50 | a++; 51 | }, 52 | 3 53 | ]; 54 | 55 | 56 | var foo = { 57 | a: 2, 58 | b: function() { 59 | a++; 60 | }, 61 | c: 3 62 | }; 63 | -------------------------------------------------------------------------------- /_includes/naming_rules.html: -------------------------------------------------------------------------------- 1 |
2 |

命名规则

3 |
4 | 5 |
6 |
7 |

项目命名

8 |

全部采用小写方式, 以下划线分隔。

9 |

例:my_project_name

10 |
11 |
12 | 13 |
14 |
15 |

目录命名

16 |

参照项目命名规则;

17 |

有复数结构时,要采用复数命名法。

18 |

例:scripts, styles, images, data_models

19 |
20 |
21 | 22 |
23 |
24 |

JS文件命名

25 |

参照项目命名规则。

26 |

例:account_model.js

27 |
28 |
29 | 30 |
31 |
32 |

CSS, SCSS文件命名

33 |

参照项目命名规则。

34 |

例:retina_sprites.scss

35 |
36 |
37 | 38 |
39 |
40 |

HTML文件命名

41 |

参照项目命名规则。

42 |

例:error_report.html

43 |
44 |
-------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Mark Otto. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /_includes/javascripts/jshint.js: -------------------------------------------------------------------------------- 1 | // not good 2 | if (a == 1) { 3 | a++; 4 | } 5 | 6 | // good 7 | if (a === 1) { 8 | a++; 9 | } 10 | 11 | // good 12 | for (key in obj) { 13 | if (obj.hasOwnProperty(key)) { 14 | // be sure that obj[key] belongs to the object and was not inherited 15 | console.log(obj[key]); 16 | } 17 | } 18 | 19 | // not good 20 | Array.prototype.count = function(value) { 21 | return 4; 22 | }; 23 | 24 | // not good 25 | var x = 1; 26 | 27 | function test() { 28 | if (true) { 29 | var x = 0; 30 | } 31 | 32 | x += 1; 33 | } 34 | 35 | // not good 36 | function test() { 37 | console.log(x); 38 | 39 | var x = 1; 40 | } 41 | 42 | // not good 43 | new Person(); 44 | 45 | // good 46 | var person = new Person(); 47 | 48 | // not good 49 | delete(obj.attr); 50 | 51 | // good 52 | delete obj.attr; 53 | 54 | // not good 55 | if (a = 10) { 56 | a++; 57 | } 58 | 59 | // not good 60 | var a = [1, , , 2, 3]; 61 | 62 | // not good 63 | var nums = []; 64 | 65 | for (var i = 0; i < 10; i++) { 66 | (function(i) { 67 | nums[i] = function(j) { 68 | return i + j; 69 | }; 70 | }(i)); 71 | } 72 | 73 | // not good 74 | var singleton = new function() { 75 | var privateVar; 76 | 77 | this.publicMethod = function() { 78 | privateVar = 1; 79 | }; 80 | 81 | this.publicMethod2 = function() { 82 | privateVar = 2; 83 | }; 84 | }; 85 | -------------------------------------------------------------------------------- /_includes/css/miscellaneous.css: -------------------------------------------------------------------------------- 1 | /* not good */ 2 | .element { 3 | } 4 | 5 | /* not good */ 6 | LI { 7 | ... 8 | } 9 | 10 | /* good */ 11 | li { 12 | ... 13 | } 14 | 15 | /* not good */ 16 | .element { 17 | color: rgba(0, 0, 0, 0.5); 18 | } 19 | 20 | /* good */ 21 | .element { 22 | color: rgba(0, 0, 0, .5); 23 | } 24 | 25 | /* not good */ 26 | .element { 27 | width: 50.0px; 28 | } 29 | 30 | /* good */ 31 | .element { 32 | width: 50px; 33 | } 34 | 35 | /* not good */ 36 | .element { 37 | width: 0px; 38 | } 39 | 40 | /* good */ 41 | .element { 42 | width: 0; 43 | } 44 | 45 | /* not good */ 46 | .element { 47 | border-radius: 3px; 48 | -webkit-border-radius: 3px; 49 | -moz-border-radius: 3px; 50 | 51 | background: linear-gradient(to bottom, #fff 0, #eee 100%); 52 | background: -webkit-linear-gradient(top, #fff 0, #eee 100%); 53 | background: -moz-linear-gradient(top, #fff 0, #eee 100%); 54 | } 55 | 56 | /* good */ 57 | .element { 58 | -webkit-border-radius: 3px; 59 | -moz-border-radius: 3px; 60 | border-radius: 3px; 61 | 62 | background: -webkit-linear-gradient(top, #fff 0, #eee 100%); 63 | background: -moz-linear-gradient(top, #fff 0, #eee 100%); 64 | background: linear-gradient(to bottom, #fff 0, #eee 100%); 65 | } 66 | 67 | /* not good */ 68 | .element { 69 | color: rgb(0, 0, 0); 70 | width: 50px; 71 | color: rgba(0, 0, 0, .5); 72 | } 73 | 74 | /* good */ 75 | .element { 76 | color: rgb(0, 0, 0); 77 | color: rgba(0, 0, 0, .5); 78 | } 79 | -------------------------------------------------------------------------------- /fonts/fontello.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2015 by original authors @ fontello.com 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "disallowEmptyBlocks": true, 3 | "disallowKeywordsOnNewLine": ["else", "catch", "finally"], 4 | "disallowMixedSpacesAndTabs": true, 5 | "disallowMultipleSpaces": true, 6 | "disallowNamedUnassignedFunctions": true, 7 | "disallowNewlineBeforeBlockStatements": true, 8 | "disallowQuotedKeysInObjects": true, 9 | "disallowSpaceAfterObjectKeys": true, 10 | "disallowSpaceAfterPrefixUnaryOperators": true, 11 | "disallowSpaceBeforePostfixUnaryOperators": true, 12 | "disallowSpacesInCallExpression": true, 13 | "disallowSpacesInFunction": { 14 | "beforeOpeningRoundBrace": true 15 | }, 16 | "disallowSpacesInsideArrayBrackets": true, 17 | "disallowSpacesInsideBrackets": true, 18 | "disallowSpacesInsideObjectBrackets": true, 19 | "disallowSpacesInsideParentheses": true, 20 | "disallowTrailingComma": true, 21 | "disallowTrailingWhitespace": true, 22 | 23 | "requireBlocksOnNewline": true, 24 | "requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties", 25 | "requireCapitalizedConstructors": true, 26 | "requireCommaBeforeLineBreak": true, 27 | "requireCurlyBraces": ["if", "else", "for", "while", "do", "switch", "try", "catch", "finally", "with"], 28 | "requireDollarBeforejQueryAssignment": true, 29 | "requireLineBreakAfterVariableAssignment": true, 30 | "requireLineFeedAtFileEnd": true, 31 | "requireMultipleVarDecl": "onevar", 32 | "requireOperatorBeforeLineBreak": true, 33 | "requirePaddingNewLineAfterVariableDeclaration": true, 34 | "requirePaddingNewLinesAfterBlocks": { 35 | "allExcept": ["inCallExpressions", "inArrayExpressions", "inProperties"] 36 | }, 37 | "requirePaddingNewLinesBeforeLineComments": { 38 | "allExcept": "firstAfterCurly" 39 | }, 40 | "requirePaddingNewLinesInObjects": true, 41 | "requireParenthesesAroundIIFE": true, 42 | "requireSemicolons": true, 43 | "requireSpaceAfterBinaryOperators": true, 44 | "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "case", "try", "catch", "finally", "with", "return", "typeof"], 45 | "requireSpaceAfterLineComment": true, 46 | "requireSpaceBeforeBinaryOperators": true, 47 | "requireSpaceBeforeBlockStatements": true, 48 | "requireSpaceBeforeKeywords": ["else", "while", "catch", "finally"], 49 | "requireSpaceBeforeObjectValues": true, 50 | "requireSpaceBetweenArguments": true, 51 | "requireSpacesInConditionalExpression": true, 52 | "requireSpacesInForStatement": true, 53 | "requireSpacesInFunction": { 54 | "beforeOpeningCurlyBrace": true 55 | }, 56 | 57 | "safeContextKeyword": ["_this", "that", "self"], 58 | "validateIndentation": 4, 59 | "validateLineBreaks": "LF", 60 | "validateParameterSeparator": ", ", 61 | "validateQuoteMarks": "'" 62 | } 63 | -------------------------------------------------------------------------------- /_includes/directory.html: -------------------------------------------------------------------------------- 1 |
2 |

目录

3 |
4 | 5 |
6 |
7 |

命名规则

8 | 15 |
16 |
17 |

HTML

18 | 31 |
32 |
33 |

CSS, SCSS

34 | 50 |
51 |
52 |

JavaScript

53 | 74 |
75 |
76 |

编辑器配置和构建检查

77 | 81 |
82 |
83 | -------------------------------------------------------------------------------- /.scss-lint.yml: -------------------------------------------------------------------------------- 1 | scss_files: "**/*.scss" 2 | 3 | linters: 4 | BangFormat: 5 | enabled: true 6 | space_before_bang: true 7 | space_after_bang: false 8 | 9 | BemDepth: 10 | enabled: false 11 | max_elements: 1 12 | 13 | BorderZero: 14 | enabled: true 15 | convention: zero # or `none` 16 | 17 | ColorKeyword: 18 | enabled: false 19 | 20 | ColorVariable: 21 | enabled: false 22 | 23 | Comment: 24 | enabled: false 25 | 26 | DebugStatement: 27 | enabled: true 28 | 29 | DeclarationOrder: 30 | enabled: true 31 | 32 | DuplicateProperty: 33 | enabled: false 34 | 35 | ElsePlacement: 36 | enabled: true 37 | style: same_line # or 'new_line' 38 | 39 | EmptyLineBetweenBlocks: 40 | enabled: false 41 | ignore_single_line_blocks: false 42 | 43 | EmptyRule: 44 | enabled: true 45 | 46 | FinalNewline: 47 | enabled: false 48 | present: true 49 | 50 | HexLength: 51 | enabled: true 52 | style: short # or 'long' 53 | 54 | HexNotation: 55 | enabled: true 56 | style: lowercase # or 'uppercase' 57 | 58 | HexValidation: 59 | enabled: true 60 | 61 | IdSelector: 62 | enabled: false 63 | 64 | ImportantRule: 65 | enabled: false 66 | 67 | ImportPath: 68 | enabled: true 69 | leading_underscore: false 70 | filename_extension: false 71 | 72 | Indentation: 73 | enabled: false 74 | allow_non_nested_indentation: false 75 | character: space # or 'tab' 76 | width: 4 77 | 78 | LeadingZero: 79 | enabled: true 80 | style: exclude_zero # or 'include_zero' 81 | 82 | MergeableSelector: 83 | enabled: true 84 | force_nesting: false 85 | 86 | NameFormat: 87 | enabled: true 88 | allow_leading_underscore: false 89 | convention: hyphenated_lowercase # or 'camel_case', or 'snake_case', or a regex pattern 90 | 91 | NestingDepth: 92 | enabled: false 93 | max_depth: 5 94 | 95 | PlaceholderInExtend: 96 | enabled: true 97 | 98 | PropertyCount: 99 | enabled: false 100 | include_nested: false 101 | max_properties: 10 102 | 103 | PropertyUnits: 104 | enabled: true 105 | global: [ 106 | 'ch', 'em', 'ex', 'rem', # Font-relative lengths 107 | 'cm', 'in', 'mm', 'pc', 'pt', 'px', 'q', # Absolute lengths 108 | 'vh', 'vw', 'vmin', 'vmax', # Viewport-percentage lengths 109 | 'deg', 'grad', 'rad', 'turn', # Angle 110 | 'ms', 's', # Duration 111 | 'Hz', 'kHz', # Frequency 112 | 'dpi', 'dpcm', 'dppx', # Resolution 113 | '%'] # Other 114 | properties: {} 115 | 116 | PropertySortOrder: 117 | enabled: false 118 | ignore_unspecified: false 119 | min_properties: 2 120 | separate_groups: true 121 | 122 | PropertySpelling: 123 | enabled: true 124 | extra_properties: [] 125 | 126 | QualifyingElement: 127 | enabled: false 128 | allow_element_with_attribute: false 129 | allow_element_with_class: false 130 | allow_element_with_id: false 131 | 132 | SelectorDepth: 133 | enabled: false 134 | max_depth: 5 135 | 136 | SelectorFormat: 137 | enabled: true 138 | convention: hyphenated_lowercase # or 'strict_BEM', or 'hyphenated_BEM', or 'snake_case', or 'camel_case', or a regex pattern 139 | ignored_types: ['id'] 140 | 141 | Shorthand: 142 | enabled: true 143 | allowed_shorthands: [1, 2, 3] 144 | 145 | SingleLinePerProperty: 146 | enabled: true 147 | allow_single_line_rule_sets: false 148 | 149 | SingleLinePerSelector: 150 | enabled: true 151 | 152 | SpaceAfterComma: 153 | enabled: true 154 | 155 | SpaceAfterPropertyColon: 156 | enabled: true 157 | style: at_least_one_space # 'one_space', or 'no_space', or 'aligned' 158 | 159 | SpaceAfterPropertyName: 160 | enabled: true 161 | 162 | SpaceBeforeBrace: 163 | enabled: true 164 | style: space # or 'new_line' 165 | allow_single_line_padding: false 166 | 167 | SpaceBetweenParens: 168 | enabled: true 169 | spaces: 0 170 | 171 | StringQuotes: 172 | enabled: true 173 | style: double_quotes # or single_quotes 174 | 175 | TrailingSemicolon: 176 | enabled: true 177 | 178 | TrailingZero: 179 | enabled: true 180 | 181 | UnnecessaryMantissa: 182 | enabled: true 183 | 184 | UnnecessaryParentReference: 185 | enabled: true 186 | 187 | UrlFormat: 188 | enabled: false 189 | 190 | UrlQuotes: 191 | enabled: true 192 | 193 | VariableForProperty: 194 | enabled: false 195 | properties: [] 196 | 197 | VendorPrefix: 198 | enabled: false 199 | identifier_list: base 200 | additional_identifiers: [] 201 | excluded_identifiers: [] 202 | 203 | ZeroUnit: 204 | enabled: true 205 | 206 | Compass::*: 207 | enabled: false 208 | -------------------------------------------------------------------------------- /_includes/html_rules.html: -------------------------------------------------------------------------------- 1 |
2 |

HTML

3 |
4 | 5 |
6 |
7 |

语法

8 | 16 |
17 |
18 | {% highlight html %}{% include html/syntax.html %}{% endhighlight %} 19 |
20 |
21 | 22 |
23 |
24 |

HTML5 doctype

25 |

在页面开头使用这个简单地doctype来启用标准模式,使其在每个浏览器中尽可能一致的展现;

26 |

虽然doctype不区分大小写,但是按照惯例,doctype大写 (关于html属性,大写还是小写)。

27 |
28 |
29 | {% highlight html %}{% include html/doctype.html %}{% endhighlight %} 30 |
31 |
32 | 33 |
34 |
35 |

lang属性

36 |

根据HTML5规范:

37 |
38 |

应在html标签上加上lang属性。这会给语音工具和翻译工具帮助,告诉它们应当怎么去发音和翻译。

39 |
40 |

更多关于 lang 属性的说明在这里

41 |

在sitepoint上可以查到语言列表

42 |

但sitepoint只是给出了语言的大类,例如中文只给出了zh,但是没有区分香港,台湾,大陆。而微软给出了一份更加详细的语言列表,其中细分了zh-cn, zh-hk, zh-tw。

43 |
44 |
45 | {% highlight html %}{% include html/lang.html %}{% endhighlight %} 46 |
47 |
48 | 49 |
50 |
51 |

字符编码

52 |

通过声明一个明确的字符编码,让浏览器轻松、快速的确定适合网页内容的渲染方式,通常指定为'UTF-8'。

53 |
54 |
55 | {% highlight html %}{% include html/encoding.html %}{% endhighlight %} 56 |
57 |
58 | 59 |
60 |
61 |

IE兼容模式

62 |

<meta> 标签可以指定页面应该用什么版本的IE来渲染;

63 |

如果你想要了解更多,请点击这里

64 |

不同doctype在不同浏览器下会触发不同的渲染模式(这篇文章总结的很到位)。

65 |
66 |
67 | {% highlight html %}{% include html/ie_compatibility_mode.html %}{% endhighlight %} 68 |
69 |
70 | 71 |
72 |
73 |

引入CSS, JS

74 |

根据HTML5规范, 通常在引入CSS和JS时不需要指明 type,因为 text/csstext/javascript 分别是他们的默认值。

75 |

HTML5 规范链接

76 | 81 |
82 |
83 | {% highlight html %}{% include html/external_css_js.html %}{% endhighlight %} 84 |
85 |
86 | 87 |
88 |
89 |

属性顺序

90 |

属性应该按照特定的顺序出现以保证易读性;

91 | 101 |

class是为高可复用组件设计的,所以应处在第一位;

102 |

id更加具体且应该尽量少使用,所以将它放在第二位。

103 |
104 |
105 | {% highlight html %}{% include html/attribute_order.html %}{% endhighlight %} 106 |
107 |
108 | 109 |
110 |
111 |

boolean属性

112 |

boolean属性指不需要声明取值的属性,XHTML需要每个属性声明取值,但是HTML5并不需要;

113 |

更多内容可以参考 WhatWG section on boolean attributes

114 |
115 |

boolean属性的存在表示取值为true,不存在则表示取值为false。

116 |
117 |
118 |
119 | {% highlight html %}{% include html/boolean_attributes.html %}{% endhighlight %} 120 |
121 |
122 | 123 |
124 |
125 |

JS生成标签

126 |

在JS文件中生成标签让内容变得更难查找,更难编辑,性能更差。应该尽量避免这种情况的出现。

127 |
128 |
129 | 130 |
131 |
132 |

减少标签数量

133 |

在编写HTML代码时,需要尽量避免多余的父节点;

134 |

很多时候,需要通过迭代和重构来使HTML变得更少。

135 |
136 |
137 | {% highlight html %}{% include html/reducing_markup.html %}{% endhighlight %} 138 |
139 |
140 | 141 |
142 |
143 |

实用高于完美

144 |

尽量遵循HTML标准和语义,但是不应该以浪费实用性作为代价;

145 |

任何时候都要用尽量小的复杂度和尽量少的标签来解决问题。

146 |
147 |
148 | -------------------------------------------------------------------------------- /_includes/css_rules.html: -------------------------------------------------------------------------------- 1 |
2 |

CSS, SCSS

3 |
4 | 5 |
6 |
7 |

缩进

8 |

使用soft tab(4个空格)。

9 |
10 |
11 | {% highlight css %}{% include css/indentation.css %}{% endhighlight %} 12 |
13 |
14 | 15 |
16 |
17 |

分号

18 |

每个属性声明末尾都要加分号。

19 |
20 |
21 | {% highlight css %}{% include css/semicolon.css %}{% endhighlight %} 22 |
23 |
24 | 25 |
26 |
27 |

空格

28 |

以下几种情况不需要空格:

29 | 36 |

以下几种情况需要空格:

37 | 46 |
47 |
48 | {% highlight css %}{% include css/space.css %}{% endhighlight %} 49 |
50 |
51 | 52 |
53 |
54 |

空行

55 |

以下几种情况需要空行:

56 | 61 |
62 |
63 | {% highlight css %}{% include css/blank_line.css %}{% endhighlight %} 64 |
65 |
66 | 67 |
68 |
69 |

换行

70 |

以下几种情况不需要换行:

71 | 74 |

以下几种情况需要换行:

75 | 80 |
81 |
82 | {% highlight css %}{% include css/new_line.css %}{% endhighlight %} 83 |
84 |
85 | 86 |
87 |
88 |

注释

89 |

注释统一用'/* */'(scss中也不要用'//'),具体参照右边的写法;

90 |

缩进与下一行代码保持一致;

91 |

可位于一个代码行的末尾,与代码间隔一个空格。 92 |

93 |
94 | {% highlight css %}{% include css/comments.css %}{% endhighlight %} 95 |
96 |
97 | 98 |
99 |
100 |

引号

101 |

最外层统一使用双引号;

102 |

url的内容要用引号;

103 |

属性选择器中的属性值需要引号。

104 |
105 |
106 | {% highlight css %}{% include css/quote_marks.css %}{% endhighlight %} 107 |
108 |
109 | 110 |
111 |
112 |

命名

113 | 118 |
119 |
120 | {% highlight css %}{% include css/naming.css %}{% endhighlight %} 121 |
122 |
123 | 124 |
125 |
126 |

属性声明顺序

127 |

相关的属性声明按右边的顺序做分组处理,组之间需要有一个空行。

128 |
129 |
130 | {% highlight css %}{% include css/declaration-order.css %}{% endhighlight %} 131 | {% highlight javascript %}{% include css/declaration-order.js %}{% endhighlight %} 132 |
133 |
134 | 135 |
136 |
137 |

颜色

138 |

颜色16进制用小写字母;

139 |

颜色16进制尽量用简写。

140 |
141 |
142 | {% highlight css %}{% include css/color.css %}{% endhighlight %} 143 |
144 |
145 | 146 |
147 |
148 |

属性简写

149 |

属性简写需要你非常清楚属性值的正确顺序,而且在大多数情况下并不需要设置属性简写中包含的所有值,所以建议尽量分开声明会更加清晰;

150 |

marginpadding 相反,需要使用简写;

151 |

常见的属性简写包括:

152 | 158 |
159 |
160 | {% highlight css %}{% include css/shorthand.css %}{% endhighlight %} 161 |
162 |
163 | 164 |
165 |
166 |

媒体查询

167 |

尽量将媒体查询的规则靠近与他们相关的规则,不要将他们一起放到一个独立的样式文件中,或者丢在文档的最底部,这样做只会让大家以后更容易忘记他们。

168 |
169 |
170 | {% highlight css %}{% include css/media_queries.css %}{% endhighlight %} 171 |
172 |
173 | 174 |
175 |
176 |

SCSS相关

177 |

提交的代码中不要有 @debug

178 |
179 |

声明顺序:

180 |
    181 |
  • @extend
  • 182 |
  • 不包含 @content@include
  • 183 |
  • 包含 @content@include
  • 184 |
  • 自身属性
  • 185 |
  • 嵌套规则
  • 186 |
187 |
188 |

@import 引入的文件不需要开头的'_'和结尾的'.scss';

189 |

嵌套最多不能超过5层;

190 |

@extend 中使用placeholder选择器;

191 |

去掉不必要的父级引用符号'&'。

192 |
193 |
194 | {% highlight css %}{% include css/scss.css %}{% endhighlight %} 195 |
196 |
197 | 198 |
199 |
200 |

杂项

201 |

不允许有空的规则;

202 |

元素选择器用小写字母;

203 |

去掉小数点前面的0;

204 |

去掉数字中不必要的小数点和末尾的0;

205 |

属性值'0'后面不要加单位;

206 |

同个属性不同前缀的写法需要在垂直方向保持对齐,具体参照右边的写法;

207 |

无前缀的标准属性应该写在有前缀的属性后面;

208 |

不要在同个规则里出现重复的属性,如果重复的属性是连续的则没关系;

209 |

不要在一个文件里出现两个相同的规则;

210 |

border: 0; 代替 border: none;

211 |

选择器不要超过4层(在scss中如果超过4层应该考虑用嵌套的方式来写);

212 |

发布的代码中不要有 @import

213 |

尽量少用'*'选择器。

214 |
215 |
216 | {% highlight css %}{% include css/miscellaneous.css %}{% endhighlight %} 217 |
218 |
219 | -------------------------------------------------------------------------------- /_includes/check.html: -------------------------------------------------------------------------------- 1 |
2 |

编辑器配置和构建检查

3 |
4 | 5 |
6 |
7 |

sublime3插件

8 |
    9 |
  1. 10 |

    安装node包

    11 |
      12 |
    • jscs npm install jscs -g
    • 13 |
    • jshint npm install jshint -g
    • 14 |
    • csscomb npm install csscomb -g
    • 15 |
    • csslint npm install csslint -g
    • 16 |
    17 |
  2. 18 |
  3. 19 |

    安装gem包

    20 |
      21 |
    • scss-lint gem install scss_lint
    • 22 |
    23 |
  4. 24 |
  5. 25 |

    安装sublime3 Package Control

    26 |
      27 |
    • 按下 ctrl+`
    • 28 |
    • 复制粘贴以下代码 import urllib.request,os,hashlib; h = 'eb2297e1a458f27d836c04bb0cbaf282' + 'd0e7a3098092775ccb37ca9d6b2e4b7d'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)
    • 29 |
    30 |
  6. 31 |
  7. 32 |

    安装sublime3插件

    33 |
      34 |
    • 按下 ctrl+shift+p,输入'ip'(Install Package)
    • 35 |
    • 36 |

      输入以下插件的名字,按顺序逐个进行安装:

      37 |
        38 |
      • EditorConfig
      • 39 |
      • Sass
      • 40 |
      • SublimeLinter
      • 41 |
      • SublimeLinter-jscs
      • 42 |
      • SublimeLinter-jshint
      • 43 |
      • SublimeLinter-csslint
      • 44 |
      • SublimeLinter-contrib-scss-lint
      • 45 |
      • JSFormat
      • 46 |
      • CSScomb
      • 47 |
      48 |
    • 49 |
    50 |
  8. 51 |
  9. 52 |

    插件的配置文件

    53 |

    将以下配置文件分别下载后放入项目根目录下:

    54 |
      55 |
    • EditorConfig 配置文件
    • 56 |
    • JSCS 配置文件
    • 57 |
    • 58 | JSHint 配置文件 59 |

      注意:全局变量需要手动加到配置文件的globals属性里,例:

      60 | {% highlight json %}{% include check/grunt_jscs_globals.json %}{% endhighlight %} 61 |
    • 62 |
    • CSSLint 配置文件
    • 63 |
    • SCSS-Lint 配置文件
    • 64 |
    65 |
  10. 66 |
  11. 67 |

    编辑器及插件设置

    68 |
      69 |
    • 70 |

      sublime3 自身

      71 |

      Preferences->Setting-User,增加下面两个配置:

      72 | {% highlight json %}{% include check/sublime_setting_user.json %}{% endhighlight %} 73 |

      点击右下角的Spaces->Convert Indentation to Spaces可以将文件中的所有tab转换成空格

      74 |
    • 75 |
    • 76 |

      JSFormat

      77 |

      Preferences->Package Settings->JSFormat->Setting-User,下载配置文件覆盖

      78 |

      配置好后格式化的默认快捷键是 ctrl+alt+f

      79 |
    • 80 |
    • 81 |

      SublimeLinter

      82 |

      右键->SublimeLinter->Lint Mode,有4种检查模式,建议选择 Load/save

      83 |

      右键->SublimeLinter->Mark Style,建议选择 Outline

      84 |

      右键->SublimeLinter->Choose Gutter Theme,建议选择 Blueberry-round

      85 |

      右键->SublimeLinter->Open User Settings,将linter里面jscs的args改成 ["--verbose"],将linter里面csslint的ignore改成 "box-model,adjoining-classes,box-sizing,compatible-vendor-prefixes,gradients,text-indent,fallback-colors,star-property-hack,underscore-property-hack,bulletproof-font-face,font-faces,import,regex-selectors,universal-selector,unqualified-attributes,overqualified-elements,duplicate-background-images,floats,font-sizes,ids,important,outline-none,qualified-headings,unique-headings"

      86 |

      当光标处于有错误的代码行时,详细的错误信息会显示在下面的状态栏中

      87 |

      右键->SublimeLinter可以看到所有的快捷键,其中 ctrl+k, a 可以列出所有错误

      88 |
    • 89 |
    • 90 |

      CSScomb

      91 |

      Preferences->Package Settings->CSScomb->Setting-User,下载配置文件覆盖

      92 |

      配置好后格式化的默认快捷键是 ctrl+shift+c

      93 |
    • 94 |
    95 |
  12. 96 |
97 |
98 |
99 | 100 |
101 |
102 |

grunt插件

103 |
    104 |
  1. 105 |

    在项目中安装grunt插件

    106 |
      107 |
    • jscs npm install grunt-jscs --save-dev
    • 108 |
    • jshint npm install grunt-contrib-jshint --save-dev
    • 109 |
    • csslint npm install grunt-contrib-csslint --save-dev
    • 110 |
    • scss-lint npm install grunt-scss-lint --save-dev
    • 111 |
    112 |
  2. 113 |
  3. 114 |

    插件的配置文件

    115 |
      116 |
    • 117 | JSCS 118 | {% highlight javascript %}{% include check/grunt_jscs.js %}{% endhighlight %} 119 |
    • 120 |
    • 121 | JSHint 122 | {% highlight javascript %}{% include check/grunt_jshint.js %}{% endhighlight %} 123 |
    • 124 |
    • 125 | CSSLint 126 | {% highlight javascript %}{% include check/grunt_csslint.js %}{% endhighlight %} 127 |
    • 128 |
    • 129 | SCSS-Lint 130 | {% highlight javascript %}{% include check/grunt_scsslint.js %}{% endhighlight %} 131 |
    • 132 |
    133 |
  4. 134 |
135 |
136 |
137 | -------------------------------------------------------------------------------- /_includes/css/declaration-order.js: -------------------------------------------------------------------------------- 1 | // 下面是推荐的属性的顺序 2 | [ 3 | [ 4 | "display", 5 | "visibility", 6 | "float", 7 | "clear", 8 | "overflow", 9 | "overflow-x", 10 | "overflow-y", 11 | "clip", 12 | "zoom" 13 | ], 14 | [ 15 | "table-layout", 16 | "empty-cells", 17 | "caption-side", 18 | "border-spacing", 19 | "border-collapse", 20 | "list-style", 21 | "list-style-position", 22 | "list-style-type", 23 | "list-style-image" 24 | ], 25 | [ 26 | "-webkit-box-orient", 27 | "-webkit-box-direction", 28 | "-webkit-box-decoration-break", 29 | "-webkit-box-pack", 30 | "-webkit-box-align", 31 | "-webkit-box-flex" 32 | ], 33 | [ 34 | "position", 35 | "top", 36 | "right", 37 | "bottom", 38 | "left", 39 | "z-index" 40 | ], 41 | [ 42 | "margin", 43 | "margin-top", 44 | "margin-right", 45 | "margin-bottom", 46 | "margin-left", 47 | "-webkit-box-sizing", 48 | "-moz-box-sizing", 49 | "box-sizing", 50 | "border", 51 | "border-width", 52 | "border-style", 53 | "border-color", 54 | "border-top", 55 | "border-top-width", 56 | "border-top-style", 57 | "border-top-color", 58 | "border-right", 59 | "border-right-width", 60 | "border-right-style", 61 | "border-right-color", 62 | "border-bottom", 63 | "border-bottom-width", 64 | "border-bottom-style", 65 | "border-bottom-color", 66 | "border-left", 67 | "border-left-width", 68 | "border-left-style", 69 | "border-left-color", 70 | "-webkit-border-radius", 71 | "-moz-border-radius", 72 | "border-radius", 73 | "-webkit-border-top-left-radius", 74 | "-moz-border-radius-topleft", 75 | "border-top-left-radius", 76 | "-webkit-border-top-right-radius", 77 | "-moz-border-radius-topright", 78 | "border-top-right-radius", 79 | "-webkit-border-bottom-right-radius", 80 | "-moz-border-radius-bottomright", 81 | "border-bottom-right-radius", 82 | "-webkit-border-bottom-left-radius", 83 | "-moz-border-radius-bottomleft", 84 | "border-bottom-left-radius", 85 | "-webkit-border-image", 86 | "-moz-border-image", 87 | "-o-border-image", 88 | "border-image", 89 | "-webkit-border-image-source", 90 | "-moz-border-image-source", 91 | "-o-border-image-source", 92 | "border-image-source", 93 | "-webkit-border-image-slice", 94 | "-moz-border-image-slice", 95 | "-o-border-image-slice", 96 | "border-image-slice", 97 | "-webkit-border-image-width", 98 | "-moz-border-image-width", 99 | "-o-border-image-width", 100 | "border-image-width", 101 | "-webkit-border-image-outset", 102 | "-moz-border-image-outset", 103 | "-o-border-image-outset", 104 | "border-image-outset", 105 | "-webkit-border-image-repeat", 106 | "-moz-border-image-repeat", 107 | "-o-border-image-repeat", 108 | "border-image-repeat", 109 | "padding", 110 | "padding-top", 111 | "padding-right", 112 | "padding-bottom", 113 | "padding-left", 114 | "width", 115 | "min-width", 116 | "max-width", 117 | "height", 118 | "min-height", 119 | "max-height" 120 | ], 121 | [ 122 | "font", 123 | "font-family", 124 | "font-size", 125 | "font-weight", 126 | "font-style", 127 | "font-variant", 128 | "font-size-adjust", 129 | "font-stretch", 130 | "font-effect", 131 | "font-emphasize", 132 | "font-emphasize-position", 133 | "font-emphasize-style", 134 | "font-smooth", 135 | "line-height", 136 | "text-align", 137 | "-webkit-text-align-last", 138 | "-moz-text-align-last", 139 | "-ms-text-align-last", 140 | "text-align-last", 141 | "vertical-align", 142 | "white-space", 143 | "text-decoration", 144 | "text-emphasis", 145 | "text-emphasis-color", 146 | "text-emphasis-style", 147 | "text-emphasis-position", 148 | "text-indent", 149 | "-ms-text-justify", 150 | "text-justify", 151 | "letter-spacing", 152 | "word-spacing", 153 | "-ms-writing-mode", 154 | "text-outline", 155 | "text-transform", 156 | "text-wrap", 157 | "-ms-text-overflow", 158 | "text-overflow", 159 | "text-overflow-ellipsis", 160 | "text-overflow-mode", 161 | "-ms-word-wrap", 162 | "word-wrap", 163 | "-ms-word-break", 164 | "word-break" 165 | ], 166 | [ 167 | "color", 168 | "background", 169 | "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader", 170 | "background-color", 171 | "background-image", 172 | "background-repeat", 173 | "background-attachment", 174 | "background-position", 175 | "-ms-background-position-x", 176 | "background-position-x", 177 | "-ms-background-position-y", 178 | "background-position-y", 179 | "-webkit-background-clip", 180 | "-moz-background-clip", 181 | "background-clip", 182 | "background-origin", 183 | "-webkit-background-size", 184 | "-moz-background-size", 185 | "-o-background-size", 186 | "background-size" 187 | ], 188 | [ 189 | "outline", 190 | "outline-width", 191 | "outline-style", 192 | "outline-color", 193 | "outline-offset", 194 | "opacity", 195 | "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity", 196 | "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha", 197 | "-ms-interpolation-mode", 198 | "-webkit-box-shadow", 199 | "-moz-box-shadow", 200 | "box-shadow", 201 | "filter:progid:DXImageTransform.Microsoft.gradient", 202 | "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient", 203 | "text-shadow" 204 | ], 205 | [ 206 | "-webkit-transition", 207 | "-moz-transition", 208 | "-ms-transition", 209 | "-o-transition", 210 | "transition", 211 | "-webkit-transition-delay", 212 | "-moz-transition-delay", 213 | "-ms-transition-delay", 214 | "-o-transition-delay", 215 | "transition-delay", 216 | "-webkit-transition-timing-function", 217 | "-moz-transition-timing-function", 218 | "-ms-transition-timing-function", 219 | "-o-transition-timing-function", 220 | "transition-timing-function", 221 | "-webkit-transition-duration", 222 | "-moz-transition-duration", 223 | "-ms-transition-duration", 224 | "-o-transition-duration", 225 | "transition-duration", 226 | "-webkit-transition-property", 227 | "-moz-transition-property", 228 | "-ms-transition-property", 229 | "-o-transition-property", 230 | "transition-property", 231 | "-webkit-transform", 232 | "-moz-transform", 233 | "-ms-transform", 234 | "-o-transform", 235 | "transform", 236 | "-webkit-transform-origin", 237 | "-moz-transform-origin", 238 | "-ms-transform-origin", 239 | "-o-transform-origin", 240 | "transform-origin", 241 | "-webkit-animation", 242 | "-moz-animation", 243 | "-ms-animation", 244 | "-o-animation", 245 | "animation", 246 | "-webkit-animation-name", 247 | "-moz-animation-name", 248 | "-ms-animation-name", 249 | "-o-animation-name", 250 | "animation-name", 251 | "-webkit-animation-duration", 252 | "-moz-animation-duration", 253 | "-ms-animation-duration", 254 | "-o-animation-duration", 255 | "animation-duration", 256 | "-webkit-animation-play-state", 257 | "-moz-animation-play-state", 258 | "-ms-animation-play-state", 259 | "-o-animation-play-state", 260 | "animation-play-state", 261 | "-webkit-animation-timing-function", 262 | "-moz-animation-timing-function", 263 | "-ms-animation-timing-function", 264 | "-o-animation-timing-function", 265 | "animation-timing-function", 266 | "-webkit-animation-delay", 267 | "-moz-animation-delay", 268 | "-ms-animation-delay", 269 | "-o-animation-delay", 270 | "animation-delay", 271 | "-webkit-animation-iteration-count", 272 | "-moz-animation-iteration-count", 273 | "-ms-animation-iteration-count", 274 | "-o-animation-iteration-count", 275 | "animation-iteration-count", 276 | "-webkit-animation-direction", 277 | "-moz-animation-direction", 278 | "-ms-animation-direction", 279 | "-o-animation-direction", 280 | "animation-direction" 281 | ], 282 | [ 283 | "content", 284 | "quotes", 285 | "counter-reset", 286 | "counter-increment", 287 | "resize", 288 | "cursor", 289 | "-webkit-user-select", 290 | "-moz-user-select", 291 | "-ms-user-select", 292 | "user-select", 293 | "nav-index", 294 | "nav-up", 295 | "nav-right", 296 | "nav-down", 297 | "nav-left", 298 | "-moz-tab-size", 299 | "-o-tab-size", 300 | "tab-size", 301 | "-webkit-hyphens", 302 | "-moz-hyphens", 303 | "hyphens", 304 | "pointer-events" 305 | ] 306 | ] 307 | -------------------------------------------------------------------------------- /_includes/js_rules.html: -------------------------------------------------------------------------------- 1 |
2 |

JavaScript

3 |
4 | 5 |
6 |
7 |

缩进

8 |

使用soft tab(4个空格)。

9 |
10 |
11 | {% highlight javascript %}{% include javascripts/indentation.js %}{% endhighlight %} 12 |
13 |
14 | 15 |
16 |
17 |

单行长度

18 |

不要超过80,但如果编辑器开启word wrap可以不考虑单行长度。

19 |
20 |
21 | 22 |
23 |
24 |

分号

25 |

以下几种情况后需加分号:

26 | 35 |
36 |
37 | {% highlight javascript %}{% include javascripts/semicolon.js %}{% endhighlight %} 38 |
39 |
40 | 41 |
42 |
43 |

空格

44 |

以下几种情况不需要空格:

45 | 55 |

以下几种情况需要空格:

56 | 68 |
69 |
70 | {% highlight javascript %}{% include javascripts/space.js %}{% endhighlight %} 71 |
72 |
73 | 74 |
75 |
76 |

空行

77 |

以下几种情况需要空行:

78 | 84 |
85 |
86 | {% highlight javascript %}{% include javascripts/blank_line.js %}{% endhighlight %} 87 |
88 |
89 | 90 |
91 |
92 |

换行

93 |

换行的地方,行末必须有','或者运算符;

94 |

以下几种情况不需要换行:

95 | 99 |

以下几种情况需要换行:

100 | 104 |
105 |
106 | {% highlight javascript %}{% include javascripts/new_line.js %}{% endhighlight %} 107 |
108 |
109 | 110 |
111 |
112 |

单行注释

113 |

双斜线后,必须跟一个空格;

114 |

缩进与下一行代码保持一致;

115 |

可位于一个代码行的末尾,与代码间隔一个空格。 116 |

117 |
118 | {% highlight javascript %}{% include javascripts/comments_single_line.js %}{% endhighlight %} 119 |
120 |
121 | 122 |
123 |
124 |

多行注释

125 |

最少三行, '*'后跟一个空格,具体参照右边的写法;

126 |

建议在以下情况下使用: 127 |

133 |
134 |
135 | {% highlight javascript %}{% include javascripts/comments_multiline.js %}{% endhighlight %} 136 |
137 |
138 | 139 |
140 |
141 |

文档注释

142 |

各类标签@param, @method等请参考usejsdocJSDoc Guide

143 |

建议在以下情况下使用:

144 | 149 |
150 |
151 | {% highlight javascript %}{% include javascripts/comments_documentation.js %}{% endhighlight %} 152 |
153 |
154 | 155 |
156 |
157 |

引号

158 |

最外层统一使用单引号。

159 |
160 |
161 | {% highlight javascript %}{% include javascripts/quote_marks.js %}{% endhighlight %} 162 |
163 |
164 | 165 |
166 |
167 |

变量命名

168 | 178 |
179 |
180 | {% highlight javascript %}{% include javascripts/variable_naming.js %}{% endhighlight %} 181 |
182 |
183 | 184 |
185 |
186 |

变量声明

187 |

一个函数作用域中所有的变量声明尽量提到函数首部,用一个var声明,不允许出现两个连续的var声明。

188 |
189 |
190 | {% highlight javascript %}{% include javascripts/variable_declaration.js %}{% endhighlight %} 191 |
192 |
193 | 194 |
195 |
196 |

函数

197 |

无论是函数声明还是函数表达式,'('前不要空格,但'{'前一定要有空格;

198 |

函数调用括号前不需要空格;

199 |

立即执行函数外必须包一层括号;

200 |

不要给inline function命名;

201 |

参数之间用', '分隔,注意逗号后有一个空格。

202 |
203 |
204 | {% highlight javascript %}{% include javascripts/function.js %}{% endhighlight %} 205 |
206 |
207 | 208 |
209 |
210 |

数组、对象

211 |

对象属性名不需要加引号;

212 |

对象以缩进的形式书写,不要写在一行;

213 |

数组、对象最后不要有逗号。

214 |
215 |
216 | {% highlight javascript %}{% include javascripts/array_object.js %}{% endhighlight %} 217 |
218 |
219 | 220 |
221 |
222 |

括号

223 |

下列关键字后必须有大括号(即使代码块的内容只有一行):if, else, for, while, do, switch, try, catch, finally, with

224 |
225 |
226 | {% highlight javascript %}{% include javascripts/brace.js %}{% endhighlight %} 227 |
228 |
229 | 230 |
231 |
232 |

null

233 |

适用场景:

234 | 240 |

不适用场景:

241 | 245 |
246 |
247 | {% highlight javascript %}{% include javascripts/literal_value_null.js %}{% endhighlight %} 248 |
249 |
250 | 251 |
252 |
253 |

undefined

254 |

永远不要直接使用undefined进行变量判断;

255 |

使用typeof和字符串'undefined'对变量进行判断。

256 |
257 |
258 | {% highlight javascript %}{% include javascripts/literal_value_undefined.js %}{% endhighlight %} 259 |
260 |
261 | 262 |
263 |
264 |

jshint

265 |

用'===', '!=='代替'==', '!=';

266 |

for-in里一定要有hasOwnProperty的判断;

267 |

不要在内置对象的原型上添加方法,如Array, Date;

268 |

不要在内层作用域的代码里声明了变量,之后却访问到了外层作用域的同名变量;

269 |

变量不要先使用后声明;

270 |

不要在一句代码中单单使用构造函数,记得将其赋值给某个变量;

271 |

不要在同个作用域下声明同名变量;

272 |

不要在一些不需要的地方加括号,例:delete(a.b);

273 |

不要使用未声明的变量(全局变量需要加到.jshintrc文件的globals属性里面);

274 |

不要声明了变量却不使用;

275 |

不要在应该做比较的地方做赋值;

276 |

debugger不要出现在提交的代码里;

277 |

数组中不要存在空元素;

278 |

不要在循环内部声明函数;

279 |

不要像这样使用构造函数,例:new function () { ... }, new Object

280 |
281 |
282 | {% highlight javascript %}{% include javascripts/jshint.js %}{% endhighlight %} 283 |
284 |
285 | 286 |
287 |
288 |

杂项

289 |

不要混用tab和space;

290 |

不要在一处使用多个tab或space;

291 |

换行符统一用'LF';

292 |

对上下文this的引用只能使用'_this', 'that', 'self'其中一个来命名;

293 |

行尾不要有空白字符;

294 |

switch的falling through和no default的情况一定要有注释特别说明;

295 |

不允许有空的代码块。

296 |
297 |
298 | {% highlight javascript %}{% include javascripts/miscellaneous.js %}{% endhighlight %} 299 |
300 |
301 | -------------------------------------------------------------------------------- /styles/code_guide.css: -------------------------------------------------------------------------------- 1 | --- 2 | layout: nil 3 | --- 4 | 5 | /* 6 | * Fonts 7 | */ 8 | 9 | @font-face { 10 | font-family: "fontello"; 11 | font-weight: normal; 12 | font-style: normal; 13 | 14 | src: url("../fonts/fontello.eot"); 15 | src: url("../fonts/fontello.eot#iefix") format("embedded-opentype"), 16 | url("../fonts/fontello.woff") format("woff"), 17 | url("../fonts/fontello.ttf") format("truetype"), 18 | url("../fonts/fontello.svg") format("svg"); 19 | } 20 | 21 | [class^="icon-"]:before, 22 | [class*="icon-"]:before { 23 | display: inline-block; 24 | 25 | margin-right: .2em; 26 | width: 1em; 27 | 28 | font-family: "fontello"; 29 | font-weight: normal; 30 | font-style: normal; 31 | font-variant: normal; 32 | text-align: center; 33 | text-decoration: inherit; 34 | text-transform: none; 35 | 36 | speak: none; 37 | } 38 | 39 | .icon-github-circled:before { 40 | content: "\e800"; 41 | } 42 | .icon-weibo:before { 43 | content: "\e801"; 44 | } 45 | 46 | 47 | /* 48 | * Scaffolding and type 49 | */ 50 | 51 | html { 52 | font-size: 16px; 53 | } 54 | @media (min-width: 48em) { 55 | html { 56 | font-size: 20px; 57 | } 58 | } 59 | 60 | body { 61 | margin: 0; 62 | 63 | font: 1rem/1.5 "微软雅黑","PT Sans", sans-serif; 64 | 65 | color: #5a5a5a; 66 | } 67 | 68 | a { 69 | text-decoration: none; 70 | 71 | color: #08c; 72 | } 73 | a:hover { 74 | text-decoration: underline; 75 | } 76 | 77 | h1, 78 | h2, 79 | h3, 80 | h4 { 81 | margin: 0 0 1rem; 82 | 83 | font-weight: normal; 84 | line-height: 1; 85 | letter-spacing: -.05em; 86 | 87 | color: #2a2a2a; 88 | } 89 | h1 { 90 | font-size: 3rem; 91 | } 92 | h2 { 93 | font-size: 2.5rem; 94 | } 95 | h3 { 96 | font-size: 1.75rem; 97 | } 98 | h4 { 99 | font-size: 1.25rem; 100 | } 101 | 102 | p { 103 | margin: 0 0 .5rem; 104 | } 105 | .lead { 106 | font-size: 1.3rem; 107 | } 108 | 109 | blockquote { 110 | position: relative; 111 | 112 | margin: 0 1rem 1rem; 113 | 114 | font-style: italic; 115 | 116 | color: #7a7a7a; 117 | } 118 | blockquote p { 119 | margin-bottom: 0; 120 | } 121 | 122 | ul li, 123 | ol li { 124 | margin-bottom: .25rem; 125 | } 126 | 127 | ul { 128 | list-style-type: disc; 129 | } 130 | 131 | /* Tighten up margin on last items */ 132 | p:last-child, 133 | ul:last-child, 134 | blockquote:last-child { 135 | margin-bottom: 0; 136 | } 137 | 138 | 139 | 140 | /* 141 | * Code 142 | */ 143 | 144 | code, 145 | pre { 146 | font-family: "PT Mono", Menlo, "Courier New", monospace; 147 | font-size: 95%; 148 | } 149 | code { 150 | border-radius: .2rem; 151 | padding: 2px 4px; 152 | 153 | font-size: 85%; 154 | 155 | color: #d44950; 156 | background-color: #f7f7f9; 157 | } 158 | 159 | pre { 160 | display: block; 161 | 162 | margin: 0 0 1rem; 163 | 164 | line-height: 1.4; 165 | white-space: pre; 166 | white-space: pre-wrap; 167 | } 168 | pre code { 169 | border: 0; 170 | padding: 0; 171 | 172 | color: inherit; 173 | background-color: transparent; 174 | } 175 | .highlight { 176 | margin: 0; 177 | } 178 | .highlight pre { 179 | margin-bottom: 0; 180 | } 181 | .highlight + .highlight { 182 | margin-top: 1rem; 183 | } 184 | 185 | 186 | /* 187 | * The Grid 188 | */ 189 | 190 | .col { 191 | padding: 2rem 1rem; 192 | } 193 | .col p { 194 | max-width: 45rem; 195 | } 196 | .col + .col { 197 | border-top: 1px solid #dfe1e8; 198 | 199 | background-color: #f7f7f9; 200 | } 201 | @media (min-width: 38em) { 202 | .col { 203 | padding: 2rem; 204 | } 205 | } 206 | @media (min-width: 48em) { 207 | .section { 208 | display: table; 209 | 210 | table-layout: fixed; 211 | 212 | width: 100%; 213 | } 214 | .col { 215 | display: table-cell; 216 | 217 | padding: 3rem; 218 | 219 | vertical-align: top; 220 | } 221 | .col + .col { 222 | border-top: 0; 223 | } 224 | } 225 | 226 | /* Make the ToC a whole section */ 227 | .toc .col + .col { 228 | background-color: #fff; 229 | } 230 | 231 | 232 | /* 233 | * Masthead 234 | */ 235 | 236 | .masthead { 237 | padding: 3rem 1rem; 238 | 239 | text-align: center; 240 | 241 | color: rgba(255,255,255,.5); 242 | background-color: #2a3440; 243 | } 244 | .masthead h1 { 245 | margin-bottom: .25rem; 246 | 247 | color: #fff; 248 | } 249 | .masthead .icon { 250 | display: inline-block; 251 | 252 | margin: 0 .5rem; 253 | 254 | font-size: 3rem; 255 | } 256 | .masthead-links { 257 | font-size: 2rem; 258 | } 259 | .masthead-links a { 260 | text-decoration: none; 261 | 262 | color: rgba(255,255,255,.5); 263 | 264 | transition: all .15s linear; 265 | } 266 | .masthead-links a:hover { 267 | color: #fff; 268 | } 269 | 270 | @media (min-width: 38em) { 271 | .masthead { 272 | padding-top: 4rem; 273 | padding-bottom: 4rem; 274 | } 275 | } 276 | 277 | 278 | /* 279 | * Sections 280 | */ 281 | 282 | .heading { 283 | padding: 2rem 1rem 1.5rem; 284 | 285 | background-color: #dfe1e8; 286 | } 287 | 288 | @media (min-width: 38em) { 289 | .heading { 290 | padding: 3rem 3rem 2.5rem; 291 | } 292 | } 293 | 294 | .section { 295 | border-bottom: 1px solid #dfe1e8; 296 | } 297 | 298 | 299 | /* 300 | * Footer 301 | */ 302 | 303 | .footer { 304 | padding: 3rem 1rem; 305 | 306 | font-size: 90%; 307 | text-align: center; 308 | } 309 | .footer p { 310 | margin-bottom: .5rem; 311 | } 312 | 313 | .quick-links { 314 | list-style: none; 315 | 316 | margin-left: 0; 317 | } 318 | .quick-links li { 319 | display: inline; 320 | } 321 | 322 | 323 | /* 324 | * Syntax highlighting 325 | */ 326 | 327 | .hll { 328 | background-color: #ffc; 329 | } 330 | 331 | /* Comment */ 332 | .c { 333 | color: #999; 334 | } 335 | 336 | /* Error */ 337 | .err { 338 | color: #a00; 339 | background-color: #faa; 340 | } 341 | 342 | /* Keyword */ 343 | .k { 344 | color: #069; 345 | } 346 | 347 | /* Operator */ 348 | .o { 349 | color: #555; 350 | } 351 | 352 | /* Comment.Multiline */ /* Edited to remove italics and make into comment */ 353 | .cm { 354 | color: #999; 355 | } 356 | 357 | /* Comment.Preproc */ 358 | .cp { 359 | color: #099; 360 | } 361 | 362 | /* Comment.Single */ 363 | .c1 { 364 | color: #999; 365 | } 366 | 367 | /* Comment.Special */ 368 | .cs { 369 | color: #999; 370 | } 371 | 372 | /* Generic.Deleted */ 373 | .gd { 374 | border: 1px solid #c00; 375 | 376 | background-color: #fcc; 377 | } 378 | 379 | /* Generic.Emph */ 380 | .ge { 381 | font-style: italic; 382 | } 383 | 384 | /* Generic.Error */ 385 | .gr { 386 | color: #f00; 387 | } 388 | 389 | /* Generic.Heading */ 390 | .gh { 391 | color: #030; 392 | } 393 | 394 | /* Generic.Inserted */ 395 | .gi { 396 | border: 1px solid #0c0; 397 | 398 | background-color: #cfc; 399 | } 400 | 401 | /* Generic.Output */ 402 | .go { 403 | color: #aaa; 404 | } 405 | 406 | /* Generic.Prompt */ 407 | .gp { 408 | color: #009; 409 | } 410 | 411 | /* Generic.Subheading */ 412 | .gu { 413 | color: #030; 414 | } 415 | 416 | /* Generic.Traceback */ 417 | .gt { 418 | color: #9c6; 419 | } 420 | 421 | /* Keyword.Constant */ 422 | .kc { 423 | color: #069; 424 | } 425 | 426 | /* Keyword.Declaration */ 427 | .kd { 428 | color: #069; 429 | } 430 | 431 | /* Keyword.Namespace */ 432 | .kn { 433 | color: #069; 434 | } 435 | 436 | /* Keyword.Pseudo */ 437 | .kp { 438 | color: #069; 439 | } 440 | 441 | /* Keyword.Reserved */ 442 | .kr { 443 | color: #069; 444 | } 445 | 446 | /* Keyword.Type */ 447 | .kt { 448 | color: #078; 449 | } 450 | 451 | /* Literal.Number */ 452 | .m { 453 | color: #f60; 454 | } 455 | 456 | /* Literal.String */ 457 | .s { 458 | color: #d44950; 459 | } 460 | 461 | /* Name.Attribute */ 462 | .na { 463 | color: #4f9fcf; 464 | } 465 | 466 | /* Name.Builtin */ 467 | .nb { 468 | color: #366; 469 | } 470 | 471 | /* Name.Class */ 472 | .nc { 473 | color: #0a8; 474 | } 475 | 476 | /* Name.Constant */ 477 | .no { 478 | color: #360; 479 | } 480 | 481 | /* Name.Decorator */ 482 | .nd { 483 | color: #99f; 484 | } 485 | 486 | /* Name.Entity */ 487 | .ni { 488 | color: #999; 489 | } 490 | 491 | /* Name.Exception */ 492 | .ne { 493 | color: #c00; 494 | } 495 | 496 | /* Name.Function */ 497 | .nf { 498 | color: #c0f; 499 | } 500 | 501 | /* Name.Label */ 502 | .nl { 503 | color: #99f; 504 | } 505 | 506 | /* Name.Namespace */ 507 | .nn { 508 | color: #0cf; 509 | } 510 | 511 | /* Name.Tag */ 512 | .nt { 513 | color: #2f6f9f; 514 | } 515 | 516 | /* Name.Variable */ 517 | .nv { 518 | color: #033; 519 | } 520 | 521 | /* Operator.Word */ 522 | .ow { 523 | color: #000; 524 | } 525 | 526 | /* Text.Whitespace */ 527 | .w { 528 | color: #bbb; 529 | } 530 | 531 | /* Literal.Number.Float */ 532 | .mf { 533 | color: #f60; 534 | } 535 | 536 | /* Literal.Number.Hex */ 537 | .mh { 538 | color: #f60; 539 | } 540 | 541 | /* Literal.Number.Integer */ 542 | .mi { 543 | color: #f60; 544 | } 545 | 546 | /* Literal.Number.Oct */ 547 | .mo { 548 | color: #f60; 549 | } 550 | 551 | /* Literal.String.Backtick */ 552 | .sb { 553 | color: #c30; 554 | } 555 | 556 | /* Literal.String.Char */ 557 | .sc { 558 | color: #c30; 559 | } 560 | 561 | /* Literal.String.Doc */ 562 | .sd { 563 | font-style: italic; 564 | 565 | color: #c30; 566 | } 567 | 568 | /* Literal.String.Double */ 569 | .s2 { 570 | color: #c30; 571 | } 572 | 573 | /* Literal.String.Escape */ 574 | .se { 575 | color: #c30; 576 | } 577 | 578 | /* Literal.String.Heredoc */ 579 | .sh { 580 | color: #c30; 581 | } 582 | 583 | /* Literal.String.Interpol */ 584 | .si { 585 | color: #a00; 586 | } 587 | 588 | /* Literal.String.Other */ 589 | .sx { 590 | color: #c30; 591 | } 592 | 593 | /* Literal.String.Regex */ 594 | .sr { 595 | color: #3aa; 596 | } 597 | 598 | /* Literal.String.Single */ 599 | .s1 { 600 | color: #c30; 601 | } 602 | 603 | /* Literal.String.Symbol */ 604 | .ss { 605 | color: #fc3; 606 | } 607 | 608 | /* Name.Builtin.Pseudo */ 609 | .bp { 610 | color: #366; 611 | } 612 | 613 | /* Name.Variable.Class */ 614 | .vc { 615 | color: #033; 616 | } 617 | 618 | /* Name.Variable.Global */ 619 | .vg { 620 | color: #033; 621 | } 622 | 623 | /* Name.Variable.Instance */ 624 | .vi { 625 | color: #033; 626 | } 627 | 628 | /* Literal.Number.Integer.Long */ 629 | .il { 630 | color: #f60; 631 | } 632 | 633 | .css .o, 634 | .css .o + .nt, 635 | .css .nt + .nt { 636 | color: #999; 637 | } 638 | -------------------------------------------------------------------------------- /csscomb_setting_user.json: -------------------------------------------------------------------------------- 1 | { 2 | "config": { 3 | "remove-empty-rulesets": true, 4 | "always-semicolon": true, 5 | "color-case": "lower", 6 | "block-indent": " ", 7 | "color-shorthand": true, 8 | "element-case": "lower", 9 | "eof-newline": true, 10 | "leading-zero": false, 11 | "quotes": "double", 12 | "sort-order-fallback": "abc", 13 | "space-before-colon": "", 14 | "space-after-colon": " ", 15 | "space-before-combinator": " ", 16 | "space-after-combinator": " ", 17 | "space-between-declarations": "\n", 18 | "space-before-opening-brace": " ", 19 | "space-after-opening-brace": "\n", 20 | "space-after-selector-delimiter": "\n", 21 | "space-before-selector-delimiter": "", 22 | "space-before-closing-brace": "\n", 23 | "strip-spaces": true, 24 | "tab-size": true, 25 | "unitless-zero": true, 26 | "vendor-prefix-align": true, 27 | "sort-order": [ 28 | [ 29 | "display", 30 | "visibility", 31 | "float", 32 | "clear", 33 | "overflow", 34 | "overflow-x", 35 | "overflow-y", 36 | "clip", 37 | "zoom" 38 | ], 39 | [ 40 | "table-layout", 41 | "empty-cells", 42 | "caption-side", 43 | "border-spacing", 44 | "border-collapse", 45 | "list-style", 46 | "list-style-position", 47 | "list-style-type", 48 | "list-style-image" 49 | ], 50 | [ 51 | "-webkit-box-orient", 52 | "-webkit-box-direction", 53 | "-webkit-box-decoration-break", 54 | "-webkit-box-pack", 55 | "-webkit-box-align", 56 | "-webkit-box-flex" 57 | ], 58 | [ 59 | "position", 60 | "top", 61 | "right", 62 | "bottom", 63 | "left", 64 | "z-index" 65 | ], 66 | [ 67 | "margin", 68 | "margin-top", 69 | "margin-right", 70 | "margin-bottom", 71 | "margin-left", 72 | "-webkit-box-sizing", 73 | "-moz-box-sizing", 74 | "box-sizing", 75 | "border", 76 | "border-width", 77 | "border-style", 78 | "border-color", 79 | "border-top", 80 | "border-top-width", 81 | "border-top-style", 82 | "border-top-color", 83 | "border-right", 84 | "border-right-width", 85 | "border-right-style", 86 | "border-right-color", 87 | "border-bottom", 88 | "border-bottom-width", 89 | "border-bottom-style", 90 | "border-bottom-color", 91 | "border-left", 92 | "border-left-width", 93 | "border-left-style", 94 | "border-left-color", 95 | "-webkit-border-radius", 96 | "-moz-border-radius", 97 | "border-radius", 98 | "-webkit-border-top-left-radius", 99 | "-moz-border-radius-topleft", 100 | "border-top-left-radius", 101 | "-webkit-border-top-right-radius", 102 | "-moz-border-radius-topright", 103 | "border-top-right-radius", 104 | "-webkit-border-bottom-right-radius", 105 | "-moz-border-radius-bottomright", 106 | "border-bottom-right-radius", 107 | "-webkit-border-bottom-left-radius", 108 | "-moz-border-radius-bottomleft", 109 | "border-bottom-left-radius", 110 | "-webkit-border-image", 111 | "-moz-border-image", 112 | "-o-border-image", 113 | "border-image", 114 | "-webkit-border-image-source", 115 | "-moz-border-image-source", 116 | "-o-border-image-source", 117 | "border-image-source", 118 | "-webkit-border-image-slice", 119 | "-moz-border-image-slice", 120 | "-o-border-image-slice", 121 | "border-image-slice", 122 | "-webkit-border-image-width", 123 | "-moz-border-image-width", 124 | "-o-border-image-width", 125 | "border-image-width", 126 | "-webkit-border-image-outset", 127 | "-moz-border-image-outset", 128 | "-o-border-image-outset", 129 | "border-image-outset", 130 | "-webkit-border-image-repeat", 131 | "-moz-border-image-repeat", 132 | "-o-border-image-repeat", 133 | "border-image-repeat", 134 | "padding", 135 | "padding-top", 136 | "padding-right", 137 | "padding-bottom", 138 | "padding-left", 139 | "width", 140 | "min-width", 141 | "max-width", 142 | "height", 143 | "min-height", 144 | "max-height" 145 | ], 146 | [ 147 | "font", 148 | "font-family", 149 | "font-size", 150 | "font-weight", 151 | "font-style", 152 | "font-variant", 153 | "font-size-adjust", 154 | "font-stretch", 155 | "font-effect", 156 | "font-emphasize", 157 | "font-emphasize-position", 158 | "font-emphasize-style", 159 | "font-smooth", 160 | "line-height", 161 | "text-align", 162 | "-webkit-text-align-last", 163 | "-moz-text-align-last", 164 | "-ms-text-align-last", 165 | "text-align-last", 166 | "vertical-align", 167 | "white-space", 168 | "text-decoration", 169 | "text-emphasis", 170 | "text-emphasis-color", 171 | "text-emphasis-style", 172 | "text-emphasis-position", 173 | "text-indent", 174 | "-ms-text-justify", 175 | "text-justify", 176 | "letter-spacing", 177 | "word-spacing", 178 | "-ms-writing-mode", 179 | "text-outline", 180 | "text-transform", 181 | "text-wrap", 182 | "-ms-text-overflow", 183 | "text-overflow", 184 | "text-overflow-ellipsis", 185 | "text-overflow-mode", 186 | "-ms-word-wrap", 187 | "word-wrap", 188 | "-ms-word-break", 189 | "word-break" 190 | ], 191 | [ 192 | "color", 193 | "background", 194 | "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader", 195 | "background-color", 196 | "background-image", 197 | "background-repeat", 198 | "background-attachment", 199 | "background-position", 200 | "-ms-background-position-x", 201 | "background-position-x", 202 | "-ms-background-position-y", 203 | "background-position-y", 204 | "-webkit-background-clip", 205 | "-moz-background-clip", 206 | "background-clip", 207 | "background-origin", 208 | "-webkit-background-size", 209 | "-moz-background-size", 210 | "-o-background-size", 211 | "background-size" 212 | ], 213 | [ 214 | "outline", 215 | "outline-width", 216 | "outline-style", 217 | "outline-color", 218 | "outline-offset", 219 | "opacity", 220 | "filter:progid:DXImageTransform.Microsoft.Alpha(Opacity", 221 | "-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha", 222 | "-ms-interpolation-mode", 223 | "-webkit-box-shadow", 224 | "-moz-box-shadow", 225 | "box-shadow", 226 | "filter:progid:DXImageTransform.Microsoft.gradient", 227 | "-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient", 228 | "text-shadow" 229 | ], 230 | [ 231 | "-webkit-transition", 232 | "-moz-transition", 233 | "-ms-transition", 234 | "-o-transition", 235 | "transition", 236 | "-webkit-transition-delay", 237 | "-moz-transition-delay", 238 | "-ms-transition-delay", 239 | "-o-transition-delay", 240 | "transition-delay", 241 | "-webkit-transition-timing-function", 242 | "-moz-transition-timing-function", 243 | "-ms-transition-timing-function", 244 | "-o-transition-timing-function", 245 | "transition-timing-function", 246 | "-webkit-transition-duration", 247 | "-moz-transition-duration", 248 | "-ms-transition-duration", 249 | "-o-transition-duration", 250 | "transition-duration", 251 | "-webkit-transition-property", 252 | "-moz-transition-property", 253 | "-ms-transition-property", 254 | "-o-transition-property", 255 | "transition-property", 256 | "-webkit-transform", 257 | "-moz-transform", 258 | "-ms-transform", 259 | "-o-transform", 260 | "transform", 261 | "-webkit-transform-origin", 262 | "-moz-transform-origin", 263 | "-ms-transform-origin", 264 | "-o-transform-origin", 265 | "transform-origin", 266 | "-webkit-animation", 267 | "-moz-animation", 268 | "-ms-animation", 269 | "-o-animation", 270 | "animation", 271 | "-webkit-animation-name", 272 | "-moz-animation-name", 273 | "-ms-animation-name", 274 | "-o-animation-name", 275 | "animation-name", 276 | "-webkit-animation-duration", 277 | "-moz-animation-duration", 278 | "-ms-animation-duration", 279 | "-o-animation-duration", 280 | "animation-duration", 281 | "-webkit-animation-play-state", 282 | "-moz-animation-play-state", 283 | "-ms-animation-play-state", 284 | "-o-animation-play-state", 285 | "animation-play-state", 286 | "-webkit-animation-timing-function", 287 | "-moz-animation-timing-function", 288 | "-ms-animation-timing-function", 289 | "-o-animation-timing-function", 290 | "animation-timing-function", 291 | "-webkit-animation-delay", 292 | "-moz-animation-delay", 293 | "-ms-animation-delay", 294 | "-o-animation-delay", 295 | "animation-delay", 296 | "-webkit-animation-iteration-count", 297 | "-moz-animation-iteration-count", 298 | "-ms-animation-iteration-count", 299 | "-o-animation-iteration-count", 300 | "animation-iteration-count", 301 | "-webkit-animation-direction", 302 | "-moz-animation-direction", 303 | "-ms-animation-direction", 304 | "-o-animation-direction", 305 | "animation-direction" 306 | ], 307 | [ 308 | "content", 309 | "quotes", 310 | "counter-reset", 311 | "counter-increment", 312 | "resize", 313 | "cursor", 314 | "-webkit-user-select", 315 | "-moz-user-select", 316 | "-ms-user-select", 317 | "user-select", 318 | "nav-index", 319 | "nav-up", 320 | "nav-right", 321 | "nav-down", 322 | "nav-left", 323 | "-moz-tab-size", 324 | "-o-tab-size", 325 | "tab-size", 326 | "-webkit-hyphens", 327 | "-moz-hyphens", 328 | "hyphens", 329 | "pointer-events" 330 | ] 331 | ] 332 | } 333 | } 334 | -------------------------------------------------------------------------------- /javascripts/jquery_2.1.4_min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery v2.1.4 | (c) 2005, 2015 jQuery Foundation, Inc. | jquery.org/license */ 2 | !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b="length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,aa=/[+~]/,ba=/'|\\/g,ca=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),da=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ea=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fa){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(ba,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+ra(o[l]);w=aa.test(a)&&pa(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",ea,!1):e.attachEvent&&e.attachEvent("onunload",ea)),p=!f(g),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ca,da);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?la(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ca,da),a[3]=(a[3]||a[4]||a[5]||"").replace(ca,da),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ca,da).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(ca,da),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return W.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(ca,da).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:oa(function(){return[0]}),last:oa(function(a,b){return[b-1]}),eq:oa(function(a,b,c){return[0>c?c+b:c]}),even:oa(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:oa(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:oa(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:oa(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sa(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function ta(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ua(a,b,c){for(var d=0,e=b.length;e>d;d++)ga(a,b[d],c);return c}function va(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wa(a,b,c,d,e,f){return d&&!d[u]&&(d=wa(d)),e&&!e[u]&&(e=wa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ua(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:va(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=va(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=va(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sa(function(a){return a===b},h,!0),l=sa(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sa(ta(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wa(i>1&&ta(m),i>1&&ra(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xa(a.slice(i,e)),f>e&&xa(a=a.slice(e)),f>e&&ra(a))}m.push(c)}return ta(m)}function ya(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=va(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&ga.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,ya(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ca,da),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ca,da),aa.test(j[0].type)&&pa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&ra(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,aa.test(a)&&pa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){ 3 | return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,ba=/<([\w:]+)/,ca=/<|&#?\w+;/,da=/<(?:script|style|link)/i,ea=/checked\s*(?:[^=]|=\s*.checked.)/i,fa=/^$|\/(?:java|ecma)script/i,ga=/^true\/(.*)/,ha=/^\s*\s*$/g,ia={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ia.optgroup=ia.option,ia.tbody=ia.tfoot=ia.colgroup=ia.caption=ia.thead,ia.th=ia.td;function ja(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function ka(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function la(a){var b=ga.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function ma(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function na(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function oa(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pa(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=oa(h),f=oa(a),d=0,e=f.length;e>d;d++)pa(f[d],g[d]);if(b)if(c)for(f=f||oa(a),g=g||oa(h),d=0,e=f.length;e>d;d++)na(f[d],g[d]);else na(a,h);return g=oa(h,"script"),g.length>0&&ma(g,!i&&oa(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(ca.test(e)){f=f||k.appendChild(b.createElement("div")),g=(ba.exec(e)||["",""])[1].toLowerCase(),h=ia[g]||ia._default,f.innerHTML=h[1]+e.replace(aa,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=oa(k.appendChild(e),"script"),i&&ma(f),c)){j=0;while(e=f[j++])fa.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=ja(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(oa(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&ma(oa(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(oa(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!da.test(a)&&!ia[(ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(aa,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(oa(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(oa(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&ea.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(oa(c,"script"),ka),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,oa(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,la),j=0;g>j;j++)h=f[j],fa.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(ha,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qa,ra={};function sa(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function ta(a){var b=l,c=ra[a];return c||(c=sa(a,b),"none"!==c&&c||(qa=(qa||n("