Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-11-16 20:13:44 +0300
committerThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-11-16 20:13:44 +0300
commitac4a2d2f7fa54dc3b4d48f40b671cf3d971b8015 (patch)
treea5831a72a52aecd339555766c76b915a58eabe12 /tasks
parent95b56a36cc9241b602375e215b401a8b8aea7794 (diff)
Fix linter error
fixes #41
Diffstat (limited to 'tasks')
-rwxr-xr-xtasks/config/sails-linker.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/tasks/config/sails-linker.js b/tasks/config/sails-linker.js
index 80850a4..c4455e8 100755
--- a/tasks/config/sails-linker.js
+++ b/tasks/config/sails-linker.js
@@ -6,7 +6,7 @@ module.exports = function(grunt) {
options: {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
- fileRef: function (filepath) {
+ fileRef: function(filepath) {
var tmpl = '<script src="%s" type="text/javascript"></script>';
return util.format(tmpl, filepath.substring(filepath.indexOf("/")));
},
@@ -20,7 +20,7 @@ module.exports = function(grunt) {
options: {
startTag: '<!--STYLES-->',
endTag: '<!--STYLES END-->',
- fileRef: function (filepath) {
+ fileRef: function(filepath) {
var tmpl = '<link rel="stylesheet" href="%s" />';
return util.format(tmpl, filepath.substring(filepath.indexOf("/")));
},
@@ -34,7 +34,7 @@ module.exports = function(grunt) {
options: {
startTag: '<!--SCRIPTS-->',
endTag: '<!--SCRIPTS END-->',
- fileRef: function (filepath) {
+ fileRef: function(filepath) {
var tmpl = '<script src="%s" type="text/javascript"></script>';
return util.format(tmpl, filepath.substring(filepath.indexOf("/")));
},
@@ -48,7 +48,7 @@ module.exports = function(grunt) {
options: {
startTag: '<!--STYLES-->',
endTag: '<!--STYLES END-->',
- fileRef: function (filepath) {
+ fileRef: function(filepath) {
var tmpl = '<link rel="stylesheet" href="%s" />';
return util.format(tmpl, filepath.substring(filepath.indexOf("/")));
},