Skip to content

Commit

Permalink
tidy package
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-codes committed Nov 17, 2017
1 parent f430743 commit 56d7fdc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/scripts.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions example/basic.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!doctype html>
<html>
<head>
<link rel="stylesheet" href="./../dist/styles.min.css">
<link rel="stylesheet" href="./../dist/styles.css">
</head>
<body>
<div id="myKanBan"></div>

<script src="./../dist/scripts.min.js"></script>
<script src="./../dist/scripts.js"></script>
<script>
document.body.onload = function() {
// User Code
Expand Down
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
"directories": {
"example": "example"
},
"scripts": {
"build": "babel src -d dist",
"uglify": ""
},
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/sean-codes/kanban.git"
Expand All @@ -29,7 +26,6 @@
},
"homepage": "https://github.com/sean-codes/kanban#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"gulp": "^3.9.1",
Expand Down
2 changes: 1 addition & 1 deletion src/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Kanban {
this.addListeners()
}

addListeners() {
addListeners() {
window.addEventListener('mouseup', (e) => {
this.cardUp()
})
Expand Down

0 comments on commit 56d7fdc

Please sign in to comment.