Linting
This commit is contained in:
parent
d8dac260d0
commit
af32e95576
3 changed files with 3 additions and 2 deletions
|
@ -33,6 +33,7 @@ class AboutIndexView(CustomTemplate):
|
|||
template_name = 'about/index.html'
|
||||
html_title = "About"
|
||||
|
||||
|
||||
class AboutMeView(CustomTemplate):
|
||||
template_name = 'about/me.html'
|
||||
html_title = "About Me"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* global $ */
|
||||
|
||||
require('./utils.js');
|
||||
require('./events.js');
|
||||
|
||||
var React = require('react');
|
||||
var ProjectImagesTypes = require('./components/index/project-images-types');
|
||||
|
|
|
@ -18,5 +18,5 @@ $(function() { // https://css-tricks.com/snippets/jquery/smooth-scrolling/
|
|||
|
||||
$('a[href="soon"]').click(function (e) {
|
||||
e.preventDefault();
|
||||
alert("Content coming soon, stand by!");
|
||||
alert('Content coming soon, stand by!');
|
||||
});
|
Reference in a new issue