diff --git a/docs/index.html b/docs/index.html
index 273b5bb4..5205c4f6 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -8,7 +8,7 @@
-
+
diff --git a/gulpfile.js b/gulpfile.js
index 76d6cb81..547bbcba 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -165,11 +165,6 @@ build.templates();
build.less(bundles.docs.less, "docs");
build.js(bundles.docs.js, "docs");
-// Default gulp task
-gulp.task("default", function(){
- run("templates", tasks.js, tasks.less, "sprite", "watch");
-});
-
// Build all JS (inc. templates)
gulp.task("js", function(){
run("templates", tasks.js);
@@ -193,6 +188,11 @@ gulp.task("watch", function () {
gulp.watch(paths.docs.src.templates, ["js"]);
});
+// Default gulp task
+gulp.task("default", function(){
+ run("templates", tasks.js, tasks.less, "sprite", "watch");
+});
+
// Publish a version to CDN and docs
// --------------------------------------------