Skip to content

Commit

Permalink
Merge branch 'master' into feature/fix-commonjs
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
  • Loading branch information
pbassut committed Mar 27, 2016
2 parents a15a7fb + c2edba3 commit ecaae27
Show file tree
Hide file tree
Showing 13 changed files with 107 additions and 42 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
textAngular v1.4.6
textAngular v1.5.0
===========

[![Build Status](https://travis-ci.org/fraywing/textAngular.png?branch=master)](https://travis-ci.org/fraywing/textAngular) [![Coverage Status](https://coveralls.io/repos/fraywing/textAngular/badge.png)](https://coveralls.io/r/fraywing/textAngular)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "textAngular",
"version": "1.4.6",
"version": "1.5.0",
"main": [
"./dist/textAngular.js",
"./dist/textAngular-sanitize.js",
Expand Down
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name"1.5.0"></a>
## 1.5.0 (2016-01-16)


#### Bug Fixes

* **main.js:**
* we now hide the popover at the end of the image resize. ([c182c96c](https://github.com/fraywing/textAngular/commit/c182c96c))
* we now hide the popover at the end of the image resize. ([d9cfcf15](https://github.com/fraywing/textAngular/commit/d9cfcf15))
* Fix for #862 where the model was not changing after image resize. ([d5a508e3](https://github.com/fraywing/textAngular/commit/d5a508e3))
* **taBind.js:** Fix bug #843 -- improper closing of list elements ([a0b79276](https://github.com/fraywing/textAngular/commit/a0b79276))
* **textAngular-santitize:** Fix for internal model ignores style attr #854 ([9fc7288b](https://github.com/fraywing/textAngular/commit/9fc7288b))


<a name"1.4.6"></a>
### 1.4.6 (2015-09-20)

Expand Down
3 changes: 2 additions & 1 deletion demo/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

<script src='../dist/textAngular-sanitize.min.js'></script>

<script src='../dist/textAngular.min.js'></script>
<script src='../dist/textAngularSetup.js'></script>
<script src='../dist/textAngular.js'></script>

</head>

Expand Down
2 changes: 1 addition & 1 deletion dist/textAngular-rangy.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions dist/textAngular-sanitize.js
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,14 @@ function validStyles(styleAttr){
|| value === 'justify'
)
||
key === 'text-decoration' && (
value === 'underline'
|| value === 'line-through'
)
|| key === 'font-weight' && (
value === 'bold'
)
||
key === 'float' && (
value === 'left'
|| value === 'right'
Expand Down
2 changes: 1 addition & 1 deletion dist/textAngular-sanitize.min.js

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

Loading

0 comments on commit ecaae27

Please sign in to comment.