0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Upgrade grunt-jscs to fix whitespace linting.

No issue.
- grunt-jscs@1.8.0
- Fix formatting
This commit is contained in:
Jason Williams 2015-04-30 16:14:19 -05:00
parent e50a1157fa
commit ae0d2fce1d
4 changed files with 7 additions and 7 deletions

View file

@ -17,7 +17,7 @@ app = new EmberApp({
outputPaths: {
app: {
js: assetLocation('ghost.js')
// css: see config/environment.js (sassOptions)
// css: see config/environment.js (sassOptions)
},
vendor: {
js: assetLocation('vendor.js'),

View file

@ -133,9 +133,9 @@ UploadUi = function ($dropzone, settings) {
if (!$dropzone.find('a.image-url')[0]) {
$dropzone.append('<a class="image-url" title="Add image from URL"><span class="hidden">URL</span></a>');
}
// if (!$dropzone.find('a.image-webcam')[0]) {
// $dropzone.append('<a class="image-webcam" title="Add image from webcam"><span class="hidden">Webcam</span></a>');
// }
// if (!$dropzone.find('a.image-webcam')[0]) {
// $dropzone.append('<a class="image-webcam" title="Add image from webcam"><span class="hidden">Webcam</span></a>');
// }
},
removeExtras: function () {

View file

@ -51,7 +51,7 @@ var EditorEditRoute = AuthenticatedRoute.extend(base, {
},
actions: {
authorizationFailed: function () {
authorizationFailed: function () {
this.send('openModal', 'signin');
}
}

View file

@ -4,8 +4,8 @@ import config from '../../config/environment';
var resolver = Resolver.create();
resolver.namespace = {
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
modulePrefix: config.modulePrefix,
podModulePrefix: config.podModulePrefix
};
export default resolver;