Skip to content

Commit

Permalink
⬆️ little
Browse files Browse the repository at this point in the history
  • Loading branch information
whizkydee committed Jan 2, 2018
1 parent 41aa8cb commit 371bb37
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 20 deletions.
19 changes: 11 additions & 8 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"editor.selectionHighlight": true,
"editor.cursorBlinking": "phase",
"editor.mouseWheelZoom": true,
"editor.cursorStyle": "line",
"editor.matchBrackets": false,
"editor.renderIndentGuides": true,
"editor.tabSize": 2,
"editor.renderLineHighlight": "all",
"workbench.activityBar.visible": true
}
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"editor.insertSpaces": true,
"prettier.bracketSpacing": true,
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.tabWidth": 2,
"prettier.useTabs": false
}
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017 Olaolu Olawuyi
Copyright (c) 2017-present Olaolu Olawuyi

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
10 changes: 5 additions & 5 deletions demos/es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
(( global ) => {
'use strict'

const links = document.querySelectorAll('a[href="#0"]')
const links = Array.from( document.querySelectorAll('a[href="#0"]') )

// Disable link actions onclick
Array.prototype.forEach.call(links, ( link ) => {
link.addEventListener('click', ( event ) => {
links.forEach(link => {
link.addEventListener('click', event => {
event.preventDefault()
})
})

const input = document.querySelector('input')

input.addEventListener('focus', () => {
Expand Down
2 changes: 1 addition & 1 deletion demos/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<!-- Meta, title, CSS, favicons, etc. -->
Expand Down
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
},
"icon": "icon.png",
"keywords": [
"syntax",
"theme",
"material",
"material theme",
"palenight",
"material",
"theme",
"dark"
],
"repository": {
Expand All @@ -29,10 +29,12 @@
"vscode": "^1.12.0"
},
"scripts": {
"start": "nodemon --exec vsce package"
"start": "nodemon --exec vsce package",
"build": "nodemon --watch src src"
},
"categories": [
"Themes"
"Themes",
"Other"
],
"contributes": {
"themes": [
Expand Down

0 comments on commit 371bb37

Please sign in to comment.