Skip to content

Commit

Permalink
chore: Updated some deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Sep 18, 2016
1 parent 64a6385 commit 4d751fe
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@
"codecov.io": "^0.1.6",
"colors": "^1.1.2",
"connect-history-api-fallback": "^1.2.0",
"css-loader": "^0.23.1",
"css-loader": "^0.25.0",
"eslint": "^3.1.0",
"eslint-config-standard": "^5.3.5",
"eslint-config-standard": "^6.0.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.4.1",
"eslint-plugin-html": "^1.5.1",
Expand Down Expand Up @@ -93,13 +93,13 @@
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"material-design-icons": "^2.2.3",
"material-design-icons": "^3.0.1",
"object-assign": "^4.1.0",
"phantomjs": "^2.1.7",
"postcss-loader": "^0.9.1",
"postcss-loader": "^0.13.0",
"raw-loader": "^0.5.1",
"roboto-fontface": "^0.6.0",
"rollup": "^0.34.1",
"rollup": "^0.35.12",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-vue": "^2.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function position (e) {
posx = e.clientX
posy = e.clientY
}
else if (e.pageX || e.pageY) {
else if (e.pageX || e.pageY) {
posx = e.pageX - document.body.scrollLeft - document.documentElement.scrollLeft
posy = e.pageY - document.body.scrollTop - document.documentElement.scrollTop
}
Expand Down
20 changes: 18 additions & 2 deletions src/vue-components/spinner/spinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,24 @@ import tail from './svg-spinners/tail.svg'
import { current as theme } from '../../theme'

let templates = {
audio, ball, bars, circles, dots, facebook, gears, grid, hearts,
hourglass, infinity, ios, oval, pie, puff, radio, rings, tail
audio,
ball,
bars,
circles,
dots,
facebook,
gears,
grid,
hearts,
hourglass,
infinity,
ios,
oval,
pie,
puff,
radio,
rings,
tail
}

export default (_Vue) => {
Expand Down

0 comments on commit 4d751fe

Please sign in to comment.