Skip to content

Commit 83bc59a

Browse files
committedJan 6, 2013
Added Readme, robots.txt, humans.txt and Changelog. Miscellaneous small changes.
1 parent d04815f commit 83bc59a

15 files changed

+142
-67
lines changed
 

‎CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
# 6 Jan 12
4+
5+
* Removed Prefixfree from `plugins.js`.
6+
* Changed compiled JS file from `main-ck.js` to `main.min.js`.
7+
* Added `@import` of local mixin library.
8+
* Added this changelog.
9+
* Added `humans.txt` and `robots.txt`.
10+
* Updated README.md.
11+
* Added `display: block;` to `_grid.kit`.

‎README.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Project Template (CodeKit)
2+
3+
This is a base tempate for building static sites using [CodeKit](http://incident57.com/codekit/). It's based partially on [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate). There is a similar template for those that use Hammer [here](https://github.com/manyhatsdesign/project-template-hammer).
4+
5+
## Directories
6+
7+
* `/css` - contains a minified main.scss with all the other SCSS files imported.
8+
* `/fonts` - an empty folder for font files.
9+
* `/img` - contains all image files for the project
10+
* `/includes` - contains partials as `.kit` files. They should start with an underscore.
11+
* `/js` - contains the projects javascript files.
12+
* `/js/vendor` - contains jQuery & Modenizr. Other plugins can go in here, but be aware of the number of HTTP requests. It might be better to build plugins into `plugins.js` using codekit imports.
13+
* `/sprite` - contains images that should be compiled into a sprite using Compass. This can be removed if the project isn't using codekit.
14+
15+
## SCSS Source Files
16+
17+
* `_normalize.scss` - CSS Reset. Currently using [Version 2.0.1](https://github.com/necolas/normalize.css).
18+
* `_base.scss` - Contains fixes for some common bugs and base styles.
19+
* `_layout.scss` - Should contain layout-speciffic class declarations. See [SMACSS](http://smacss.com/) for more information on organising styles.
20+
* `_helpers.scss` - Contains a stripped-down version of the helper classes from H5BP.
21+
* `_print.scss` - Contains print-specific styles based on H5BP.
22+
23+
Each module (again, see [SMACSS](http://smacss.com/)) should have its own SCSS file. `main.scss` also imports Bourboun by default and my own local mixins library.
24+
25+
## Other Source Files
26+
27+
* `includes/_head.kit` - The top part of each page, based on H5BP.
28+
* `includes/_foot.kit` - The bottom part of each page.
29+
* `includes/_grid.kit` - A fluid grid overlay for use during development.
30+
* `js/boxsizing-polyfill.htc` - A [polyfill](https://github.com/Schepp/box-sizing-polyfill) that allows IE to understand box-sizing.
31+
* `main.js` - User Scripts should go in here.
32+
* `plugins.js` - Based on H5BP, with a few additions.
33+
* `codekit-config.json` - A CodeKit Config File
34+
* `index.kit` - A template for the index page. Other pages should be dropped in the root and import `_head` and `_foot` like this.
35+
36+
## Output Files
37+
38+
Other than the individual HTML pages, the following files are generated by CodeKit:
39+
40+
* `main.scss` - All CSS, minified.
41+
* `main.min.js` - All JS, minified.
42+
43+
## Typography
44+
45+
This template aims to keep superfluous code to a minimum. It only contains code that I find myself using in every project. As a consiquence, it keeps the typography and layout code to a minimum. The base font size is reduced to 10px using a percentage and thereafter `rem`s are used to declare font-sizes and heights, based on this value. This means that 1rem = 10px so the maths is a little easiter. Because rems aren't widely supported, A pixel value is always declared first.
46+
47+
Two baseline images are included for use with the grid overlay. One is at 20px and the other at 26px as these are the most common line-heights in my work.
48+
49+
## Grid
50+
51+
The bones for creating a fluid grid using nice round numbers are already present in the template, and an overlay is provided for use in development. You can turn the overlay off by setting `display: none;` on `#overlay` in `_grid.kit`, or by turning off the import for that file.
52+
53+
You should always build a grid that fits your design so this is only provided as an example. I'll be writing about building fluid grids soon, but theres some very sparce info [here](http://blog.dasmith.co.uk/post/24476543889/simple-responsive-grid).
54+
55+
## HTML5 Boilerplate Version
56+
57+
This template currently uses Version 2.0.3 (9 Dec 2012) but may have been updated with some of the more recent changes. See the [H5BP changelog](https://github.com/h5bp/html5-boilerplate/blob/master/CHANGELOG.md).
58+
59+
## Contributing & Credit
60+
61+
If you'd like to contribute, go ahead and fork.
62+
63+
This template was built by [Danny Smith](http://dasmith.co.uk) ([@dannysmith](http://twitter.com/dannysmith)) and is based on [HTML5 Boilerplate](https://github.com/h5bp/html5-boilerplate). It incorporates a number of other fixes and suggestions, some of which were written by others.

‎codekit-config.json

+25-25
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@
2323
"outputAbbreviatedPath" : "\/index.html",
2424
"fileType" : 65536
2525
},
26+
"\/js\/main.min.js" : {
27+
"ignoreWasSetByUser" : 0,
28+
"ignore" : 1,
29+
"hidden" : 0,
30+
"outputPathIsSetByUser" : 0,
31+
"inputAbbreviatedPath" : "\/js\/main.min.js",
32+
"outputStyle" : 1,
33+
"syntaxCheckerStyle" : 1,
34+
"outputAbbreviatedPath" : "\/js\/main.min.min.js",
35+
"fileType" : 64
36+
},
2637
"\/js\/plugins.js" : {
2738
"ignoreWasSetByUser" : 0,
2839
"ignore" : 1,
@@ -31,7 +42,7 @@
3142
"inputAbbreviatedPath" : "\/js\/plugins.js",
3243
"outputStyle" : 1,
3344
"syntaxCheckerStyle" : 1,
34-
"outputAbbreviatedPath" : "\/js\/plugins-ck.js",
45+
"outputAbbreviatedPath" : "\/js\/plugins.min.js",
3546
"fileType" : 64
3647
},
3748
"\/css\/_layout.scss" : {
@@ -119,17 +130,6 @@
119130
"outputAbbreviatedPath" : "\/No Output Path",
120131
"fileType" : 16
121132
},
122-
"\/js\/main-ck.js" : {
123-
"ignoreWasSetByUser" : 0,
124-
"ignore" : 1,
125-
"hidden" : 0,
126-
"outputPathIsSetByUser" : 0,
127-
"inputAbbreviatedPath" : "\/js\/main-ck.js",
128-
"outputStyle" : 1,
129-
"syntaxCheckerStyle" : 1,
130-
"outputAbbreviatedPath" : "\/js\/main-ck-ck.js",
131-
"fileType" : 64
132-
},
133133
"\/img\/grid-26.png" : {
134134
"ignoreWasSetByUser" : 0,
135135
"ignore" : 0,
@@ -158,7 +158,7 @@
158158
"inputAbbreviatedPath" : "\/js\/vendor\/jquery-1.8.3.min.js",
159159
"outputStyle" : 1,
160160
"syntaxCheckerStyle" : 1,
161-
"outputAbbreviatedPath" : "\/js\/vendor\/jquery-1.8.3.min-ck.js",
161+
"outputAbbreviatedPath" : "\/js\/vendor\/jquery-1.8.3.min.min.js",
162162
"fileType" : 64
163163
},
164164
"\/js\/main.js" : {
@@ -169,7 +169,7 @@
169169
"inputAbbreviatedPath" : "\/js\/main.js",
170170
"outputStyle" : 1,
171171
"syntaxCheckerStyle" : 1,
172-
"outputAbbreviatedPath" : "\/js\/main-ck.js",
172+
"outputAbbreviatedPath" : "\/js\/main.min.js",
173173
"fileType" : 64
174174
},
175175
"\/js\/vendor\/modernizr-2.6.2.min.js" : {
@@ -180,7 +180,7 @@
180180
"inputAbbreviatedPath" : "\/js\/vendor\/modernizr-2.6.2.min.js",
181181
"outputStyle" : 1,
182182
"syntaxCheckerStyle" : 1,
183-
"outputAbbreviatedPath" : "\/js\/vendor\/modernizr-2.6.2.min-ck.js",
183+
"outputAbbreviatedPath" : "\/js\/vendor\/modernizr-2.6.2.min.min.js",
184184
"fileType" : 64
185185
},
186186
"\/css\/ie8.scss" : {
@@ -195,23 +195,23 @@
195195
"fileType" : 4,
196196
"debugStyle" : 0
197197
},
198-
"\/includes\/_foot.kit" : {
198+
"\/index.html" : {
199199
"ignoreWasSetByUser" : 0,
200200
"ignore" : 1,
201201
"hidden" : 0,
202202
"outputPathIsSetByUser" : 0,
203-
"inputAbbreviatedPath" : "\/includes\/_foot.kit",
204-
"outputAbbreviatedPath" : "\/includes\/_foot.html",
205-
"fileType" : 65536
203+
"inputAbbreviatedPath" : "\/index.html",
204+
"outputAbbreviatedPath" : "\/No Output Path",
205+
"fileType" : 2048
206206
},
207-
"\/index.html" : {
207+
"\/includes\/_foot.kit" : {
208208
"ignoreWasSetByUser" : 0,
209209
"ignore" : 1,
210210
"hidden" : 0,
211211
"outputPathIsSetByUser" : 0,
212-
"inputAbbreviatedPath" : "\/index.html",
213-
"outputAbbreviatedPath" : "\/No Output Path",
214-
"fileType" : 2048
212+
"inputAbbreviatedPath" : "\/includes\/_foot.kit",
213+
"outputAbbreviatedPath" : "\/includes\/_foot.html",
214+
"fileType" : 65536
215215
},
216216
"\/css\/_base.scss" : {
217217
"ignoreWasSetByUser" : 0,
@@ -264,7 +264,7 @@
264264
"lessAutoOutputPathStyle" : 2,
265265
"genericWebpageFileExtensionsString" : "html, htm, shtml, shtm, xhtml, php, jsp, asp, aspx, erb, ctp",
266266
"coffeeMinifyOutput" : 1,
267-
"javascriptOutputSuffix" : "-ck",
267+
"javascriptOutputSuffix" : ".min",
268268
"jadeOutputStyle" : 0,
269269
"coffeeAutoOutputPathStyle" : 0,
270270
"autoSyncProjectSettingsFile" : 1,
@@ -426,7 +426,7 @@
426426
"projectAttributes" : {
427427
"bourbonEnabled" : 1,
428428
"displayValue" : "project-template-codekit",
429-
"displayValueWasSetByUser" : 0,
429+
"displayValueWasSetByUser" : 1,
430430
"compassEnabled" : 0
431431
}
432432
}

‎css/_base.scss

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
// =======================
22
// Fixes - From HTML5 BP
33
// ======================= */
4-
4+
5+
// Reset - Fix for whitespace on right bug in FF */
6+
html,body
7+
{
8+
width: 100%;
9+
margin: 0;
10+
padding: 0;
11+
overflow-x: hidden;
12+
}
13+
514
// apply a natural box layout model to all elements - Danny Smith 1 Oct 12 */
615
*, *:before, *:after {
716
-moz-box-sizing: border-box;
@@ -14,15 +23,6 @@
1423
@-ms-viewport{
1524
width: device-width;
1625
}
17-
18-
19-
html,body // Fix for whitespace on right bug in FF */
20-
{
21-
width: 100%;
22-
margin: 0px;
23-
padding: 0px;
24-
overflow-x: hidden;
25-
}
2626

2727
//Uses classes assed by JS.
2828
.mac h1,

‎css/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎css/main.scss

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
//Import bourbon from CodeKit
22
@import "bourbon";
33

4+
//Import mixin Library
5+
@import "/Users/danny/Dropbox/Manyhats/Internal/Code Templates/mixin-library/mixins.scss";
6+
47
// Import basic Styles
58
@import "normalize";
69
@import "base";

‎humans.txt

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# humanstxt.org/
2+
# The humans responsible & technology colophon
3+
4+
# TEAM
5+
6+
Designer: Danny Smith.
7+
Site: manyhatsdesign.com
8+
Email: danny@manyhatsdesign.com
9+
Twitter: @dannysmith
10+
Location: Eastbourne, UK
11+
12+
# TECHNOLOGY COLOPHON
13+
14+
Last update: 2012/01/13
15+
Standards: HTML5, CSS3, PHP
16+
Components: Modernizr, jQuery, Typekit
17+
Software: Sketch, Textmate 2, CodeKit, SASS, Transmit & OSX

‎includes/_foot.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
-->
99

1010
<!-- Local Scripts -->
11-
<script src="/js/main-ck.js"></script>
11+
<script src="/js/main.min.js"></script>
1212

1313
<!-- @include grid -->
1414
</body>

‎includes/_grid.kit

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div id="overlay"><div id="underlay"></div><div id="overlay-inner"><div id="col-1"></div><div id="col-2"></div><div id="col-3"></div><div id="col-4"></div><div id="col-5"></div><div id="col-6"></div><div id="col-7"></div><div id="col-8"></div><div id="col-9"></div><div id="col-10"></div><div id="col-11"></div><div id="col-12"></div></div></div>
66

77
<style>
8-
#overlay {position: absolute; width: 100%; top: 0; z-index: -1;}
8+
#overlay {display: block; position: absolute; width: 100%; top: 0; z-index: -1;}
99
#overlay-inner {max-width: 1000px; margin: 0 auto;padding: 0 2%; -moz-box-sizing: content-box; box-sizing: content-box;}
1010
#overlay-inner div {height: 1500px; background: rgba(244,162,173,0.2); margin-right: 2%; width: 6.5%; float: left; -moz-box-sizing: border-box;box-sizing: border-box;}
1111
#overlay #col-12 {margin-right: 0;}

‎index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h3>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tem
7777
-->
7878

7979
<!-- Local Scripts -->
80-
<script src="/js/main-ck.js"></script>
80+
<script src="/js/main.min.js"></script>
8181

8282
<!-- Fluid Columns Overlay -->
8383

@@ -86,7 +86,7 @@ <h3>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tem
8686
<div id="overlay"><div id="underlay"></div><div id="overlay-inner"><div id="col-1"></div><div id="col-2"></div><div id="col-3"></div><div id="col-4"></div><div id="col-5"></div><div id="col-6"></div><div id="col-7"></div><div id="col-8"></div><div id="col-9"></div><div id="col-10"></div><div id="col-11"></div><div id="col-12"></div></div></div>
8787

8888
<style>
89-
#overlay {position: absolute; width: 100%; top: 0; z-index: -1;}
89+
#overlay {display: block; position: absolute; width: 100%; top: 0; z-index: -1;}
9090
#overlay-inner {max-width: 1000px; margin: 0 auto;padding: 0 2%; -moz-box-sizing: content-box; box-sizing: content-box;}
9191
#overlay-inner div {height: 1500px; background: rgba(244,162,173,0.2); margin-right: 2%; width: 6.5%; float: left; -moz-box-sizing: border-box;box-sizing: border-box;}
9292
#overlay #col-12 {margin-right: 0;}

‎js/main-ck.js

-1
This file was deleted.

‎js/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
$(document).ready(function(){
2-
2+
33
});

‎js/main.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎js/plugins.js

+2-25
Original file line numberDiff line numberDiff line change
@@ -21,36 +21,13 @@
2121
}
2222
}());
2323

24-
// ************* Place any jQuery/helper plugins in here ******************** //
25-
2624
/* Detect Mac/PC - Being used as subpixel-antialiased rendering
2725
on Mac Webkit.
2826
-------------------------------------------------------------- */
29-
if (navigator.userAgent.indexOf('Mac OS X') != -1) {
27+
if (navigator.userAgent.indexOf('Mac OS X') !== -1) {
3028
document.body.className += " mac";
3129
} else {
3230
document.body.className += " pc";
3331
}
3432

35-
// This can be removed iff I'm using the Bourbon mixins to handle prefixes through SASS.
36-
/**
37-
* StyleFix 1.0.3 & PrefixFree 1.0.7
38-
* @author Lea Verou
39-
* MIT license
40-
(function(){function t(e,t){return[].slice.call((t||document).querySelectorAll(e))}if(!window.addEventListener)return;var e=window.StyleFix={link:function(t){try{if(t.rel!=="stylesheet"||t.hasAttribute("data-noprefix"))return}catch(n){return}var r=t.href||t.getAttribute("data-href"),i=r.replace(/[^\/]+$/,""),s=t.parentNode,o=new XMLHttpRequest,u;o.onreadystatechange=function(){o.readyState===4&&u()};u=function(){var n=o.responseText;if(n&&t.parentNode&&(!o.status||o.status<400||o.status>600)){n=e.fix(n,!0,t);if(i){n=n.replace(/url\(\s*?((?:"|')?)(.+?)\1\s*?\)/gi,function(e,t,n){return/^([a-z]{3,10}:|\/|#)/i.test(n)?e:'url("'+i+n+'")'});var r=i.replace(/([\\\^\$*+[\]?{}.=!:(|)])/g,"\\$1");n=n.replace(RegExp("\\b(behavior:\\s*?url\\('?\"?)"+r,"gi"),"$1")}var u=document.createElement("style");u.textContent=n;u.media=t.media;u.disabled=t.disabled;u.setAttribute("data-href",t.getAttribute("href"));s.insertBefore(u,t);s.removeChild(t);u.media=t.media}};try{o.open("GET",r);o.send(null)}catch(n){if(typeof XDomainRequest!="undefined"){o=new XDomainRequest;o.onerror=o.onprogress=function(){};o.onload=u;o.open("GET",r);o.send(null)}}t.setAttribute("data-inprogress","")},styleElement:function(t){if(t.hasAttribute("data-noprefix"))return;var n=t.disabled;t.textContent=e.fix(t.textContent,!0,t);t.disabled=n},styleAttribute:function(t){var n=t.getAttribute("style");n=e.fix(n,!1,t);t.setAttribute("style",n)},process:function(){t('link[rel="stylesheet"]:not([data-inprogress])').forEach(StyleFix.link);t("style").forEach(StyleFix.styleElement);t("[style]").forEach(StyleFix.styleAttribute)},register:function(t,n){(e.fixers=e.fixers||[]).splice(n===undefined?e.fixers.length:n,0,t)},fix:function(t,n,r){for(var i=0;i<e.fixers.length;i++)t=e.fixers[i](t,n,r)||t;return t},camelCase:function(e){return e.replace(/-([a-z])/g,function(e,t){return t.toUpperCase()}).replace("-","")},deCamelCase:function(e){return e.replace(/[A-Z]/g,function(e){return"-"+e.toLowerCase()})}};(function(){setTimeout(function(){t('link[rel="stylesheet"]').forEach(StyleFix.link)},10);document.addEventListener("DOMContentLoaded",StyleFix.process,!1)})()})();(function(e){function t(e,t,r,i,s){e=n[e];if(e.length){var o=RegExp(t+"("+e.join("|")+")"+r,"gi");s=s.replace(o,i)}return s}if(!window.StyleFix||!window.getComputedStyle)return;var n=window.PrefixFree={prefixCSS:function(e,r,i){var s=n.prefix;n.functions.indexOf("linear-gradient")>-1&&(e=e.replace(/(\s|:|,)(repeating-)?linear-gradient\(\s*(-?\d*\.?\d*)deg/ig,function(e,t,n,r){return t+(n||"")+"linear-gradient("+(90-r)+"deg"}));e=t("functions","(\\s|:|,)","\\s*\\(","$1"+s+"$2(",e);e=t("keywords","(\\s|:)","(\\s|;|\\}|$)","$1"+s+"$2$3",e);e=t("properties","(^|\\{|\\s|;)","\\s*:","$1"+s+"$2:",e);if(n.properties.length){var o=RegExp("\\b("+n.properties.join("|")+")(?!:)","gi");e=t("valueProperties","\\b",":(.+?);",function(e){return e.replace(o,s+"$1")},e)}if(r){e=t("selectors","","\\b",n.prefixSelector,e);e=t("atrules","@","\\b","@"+s+"$1",e)}e=e.replace(RegExp("-"+s,"g"),"-");e=e.replace(/-\*-(?=[a-z]+)/gi,n.prefix);return e},property:function(e){return(n.properties.indexOf(e)?n.prefix:"")+e},value:function(e,r){e=t("functions","(^|\\s|,)","\\s*\\(","$1"+n.prefix+"$2(",e);e=t("keywords","(^|\\s)","(\\s|$)","$1"+n.prefix+"$2$3",e);return e},prefixSelector:function(e){return e.replace(/^:{1,2}/,function(e){return e+n.prefix})},prefixProperty:function(e,t){var r=n.prefix+e;return t?StyleFix.camelCase(r):r}};(function(){var e={},t=[],r={},i=getComputedStyle(document.documentElement,null),s=document.createElement("div").style,o=function(n){if(n.charAt(0)==="-"){t.push(n);var r=n.split("-"),i=r[1];e[i]=++e[i]||1;while(r.length>3){r.pop();var s=r.join("-");u(s)&&t.indexOf(s)===-1&&t.push(s)}}},u=function(e){return StyleFix.camelCase(e)in s};if(i.length>0)for(var a=0;a<i.length;a++)o(i[a]);else for(var f in i)o(StyleFix.deCamelCase(f));var l={uses:0};for(var c in e){var h=e[c];l.uses<h&&(l={prefix:c,uses:h})}n.prefix="-"+l.prefix+"-";n.Prefix=StyleFix.camelCase(n.prefix);n.properties=[];for(var a=0;a<t.length;a++){var f=t[a];if(f.indexOf(n.prefix)===0){var p=f.slice(n.prefix.length);u(p)||n.properties.push(p)}}n.Prefix=="Ms"&&!("transform"in s)&&!("MsTransform"in s)&&"msTransform"in s&&n.properties.push("transform","transform-origin");n.properties.sort()})();(function(){function i(e,t){r[t]="";r[t]=e;return!!r[t]}var e={"linear-gradient":{property:"backgroundImage",params:"red, teal"},calc:{property:"width",params:"1px + 5%"},element:{property:"backgroundImage",params:"#foo"},"cross-fade":{property:"backgroundImage",params:"url(a.png), url(b.png), 50%"}};e["repeating-linear-gradient"]=e["repeating-radial-gradient"]=e["radial-gradient"]=e["linear-gradient"];var t={initial:"color","zoom-in":"cursor","zoom-out":"cursor",box:"display",flexbox:"display","inline-flexbox":"display",flex:"display","inline-flex":"display"};n.functions=[];n.keywords=[];var r=document.createElement("div").style;for(var s in e){var o=e[s],u=o.property,a=s+"("+o.params+")";!i(a,u)&&i(n.prefix+a,u)&&n.functions.push(s)}for(var f in t){var u=t[f];!i(f,u)&&i(n.prefix+f,u)&&n.keywords.push(f)}})();(function(){function s(e){i.textContent=e+"{}";return!!i.sheet.cssRules.length}var t={":read-only":null,":read-write":null,":any-link":null,"::selection":null},r={keyframes:"name",viewport:null,document:'regexp(".")'};n.selectors=[];n.atrules=[];var i=e.appendChild(document.createElement("style"));for(var o in t){var u=o+(t[o]?"("+t[o]+")":"");!s(u)&&s(n.prefixSelector(u))&&n.selectors.push(o)}for(var a in r){var u=a+" "+(r[a]||"");!s("@"+u)&&s("@"+n.prefix+u)&&n.atrules.push(a)}e.removeChild(i)})();n.valueProperties=["transition","transition-property"];e.className+=" "+n.prefix;StyleFix.register(n.prefixCSS)})(document.documentElement);
41-
42-
43-
// Allows prefixfree to work with jQuery's .css() method
44-
(function($, self){
45-
if(!$ || !self) {
46-
return;
47-
}
48-
for(var i=0; i<self.properties.length; i++) {
49-
var property = self.properties[i],
50-
camelCased = StyleFix.camelCase(property),
51-
PrefixCamelCased = self.prefixProperty(property, true);
52-
$.cssProps[camelCased] = PrefixCamelCased;
53-
}
54-
})(window.jQuery, window.PrefixFree);
55-
56-
*/
33+
// ************* Place any jQuery/helper plugins in here ******************** //

‎robots.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# robotstxt.org/
2+
3+
User-agent: *

1 commit comments

Comments
 (1)

dannysmith commented on Jan 6, 2013

@dannysmith
OwnerAuthor

Hammer version updated to fall inline.

Please sign in to comment.