Add support for grunt 0.4.0

This commit is contained in:
Kevin Martensson
2013-02-22 19:21:03 +01:00
parent cc6d4eba30
commit b7d9f187aa
13 changed files with 182 additions and 9829 deletions

View File

@@ -1,7 +1,7 @@
// Modified http://paulirish.com/2009/markup-based-unobtrusive-comprehensive-dom-ready-execution/
// Only fires on body class (working off strictly WordPress body_class)
ExampleSite = {
var ExampleSite = {
// All pages
common: {
init: function() {
@@ -23,7 +23,7 @@ ExampleSite = {
}
};
UTIL = {
var UTIL = {
fire: function(func, funcname, args) {
var namespace = ExampleSite;
funcname = (funcname === undefined) ? 'init' : funcname;
@@ -43,4 +43,4 @@ UTIL = {
}
};
$(document).ready(UTIL.loadEvents);
$(document).ready(UTIL.loadEvents);

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long