Skip to content

Commit

Permalink
Merge pull request #6 from pocketsize/dev
Browse files Browse the repository at this point in the history
Version 1.0.2
  • Loading branch information
björn committed Apr 29, 2019
2 parents e14e812 + 494cb36 commit 6b257c6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Bolts
*v1.0.1*
*v1.0.2*

Bolts is a collection of practical Sass mixins and JS functions helping you deal with all the mundane website building and styling tasks, so that you can focus on creating something new. It aims to be a toolkit that does the things you're tired of.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bolts-lib",
"version": "1.0.1",
"version": "1.0.2",
"description": "Front-end helper library",
"main": "src/js/index.js",
"author": "Pocketsize <[email protected]> (https://www.pocketsize.se)",
Expand Down
2 changes: 1 addition & 1 deletion src/js/bolts.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/js/detect.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/js/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/js/misc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
10 changes: 1 addition & 9 deletions src/js/state.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down Expand Up @@ -105,8 +105,6 @@ function set(key, value = true, node = false) {
node: node
})

state.trigger('change', key, node)

setDOMState(node)
} else {
let i = state._store.global.length - 1
Expand All @@ -124,8 +122,6 @@ function set(key, value = true, node = false) {
value: value
})

state.trigger('change', key)

setDOMState()
}

Expand Down Expand Up @@ -155,8 +151,6 @@ function remove(key, node = false) {
i -= 1
}

state.trigger('change', key, node)

setDOMState(node)
} else {
let i = state._store.global.length - 1
Expand All @@ -169,8 +163,6 @@ function remove(key, node = false) {
i -= 1
}

state.trigger('change', key)

setDOMState()
}

Expand Down
2 changes: 1 addition & 1 deletion src/js/timing.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down
2 changes: 1 addition & 1 deletion src/sass/bolts.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Bolts 1.0.1 | MIT License
* Bolts 1.0.2 | MIT License
*
* Developed by Pocketsize
* http://www.pocketsize.se/
Expand Down

0 comments on commit 6b257c6

Please sign in to comment.