Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sveltejs/svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 30, 2016
2 parents 0cee0a7 + fd9dc90 commit d152e57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Svelte changelog

## 1.0.2

Set `style.cssText` rather than `style` ([#44](https://github.com/sveltejs/svelte/issues/44))

## 1.0.1

* Preserve SVG namespace inside each blocks
Expand Down
2 changes: 1 addition & 1 deletion compiler/generate/visitors/attributes/lookup.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const lookup = {
srcset: { appliesTo: [ 'img' ] },
start: { appliesTo: [ 'ol' ] },
step: { appliesTo: [ 'input' ] },
style: {},
style: { propertyName: 'style.cssText' },
summary: { appliesTo: [ 'table' ] },
tabindex: { propertyName: 'tabIndex' },
target: { appliesTo: [ 'a', 'area', 'base', 'form' ] },
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": "svelte",
"version": "1.0.1",
"version": "1.0.2",
"description": "The magical disappearing UI framework",
"main": "dist/svelte.js",
"files": [
Expand Down

0 comments on commit d152e57

Please sign in to comment.