Skip to content

Commit f42ec7c

Browse files
SimeonCSimeonC
authored andcommitted
chore(release): release v1.3.0-pre8
1 parent ca8af8b commit f42ec7c

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "textAngular",
3-
"version": "1.3.0-pre7",
3+
"version": "1.3.0-pre8",
44
"main": ["./src/textAngular.js", "./src/textAngularSetup.js", "./src/textAngular.css"],
55
"description": "A radically powerful Text-Editor/Wysiwyg editor for Angular.js",
66
"keywords": [

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<a name="1.3.0-pre8"></a>
2+
### 1.3.0-pre8 (2014-10-23)
3+
4+
5+
#### Bug Fixes
6+
7+
* **taBind:** Fix some paste from word issues. ([ca8af8b1](http://github.com/fraywing/textAngular/commit/ca8af8b17a363a9b70d63b1ebf5115ecb53b55c1))
8+
9+
110
<a name="1.3.0-pre7"></a>
211
### 1.3.0-pre7 (2014-10-22)
312

dist/textAngular.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "textAngular",
33
"filename": "textAngular.min.js",
4-
"version": "1.3.0-pre7",
4+
"version": "1.3.0-pre8",
55
"description": "A radically powerful Text-Editor/Wysiwyg editor for Angular.js",
66
"maintainers": [
77
{

src/textAngular.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*!
22
textAngular
33
Author : Austin Anderson
44
License : 2013 MIT
5-
Version 1.3.0-pre7
5+
Version 1.3.0-pre8
66
77
See README.md or https://github.com/fraywing/textAngular/wiki for requirements and use.
88
*/
@@ -2244,7 +2244,6 @@ See README.md or https://github.com/fraywing/textAngular/wiki for requirements a
22442244
// check for blockelements - if they exist then we have to split the current element in half (and all others up to the closest block element) and insert all children in-between.
22452245
// If there are no block elements, or there is a mixture we need to create textNodes for the non wrapped text (we don't want them spans messing up the picture).
22462246
nodes = [];
2247-
var matchBlockEls = false;
22482247
for(_childI = 0; _childI < children.length; _childI++){
22492248
if(!(
22502249
(children[_childI].nodeName.toLowerCase() === 'p' && children[_childI].innerHTML.trim() === '') || // empty p element

src/textAngularSetup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
/*
1+
/*!
22
textAngular
33
Author : Austin Anderson
44
License : 2013 MIT
5-
Version 1.3.0-pre7
5+
Version 1.3.0-pre8
66
77
See README.md or https://github.com/fraywing/textAngular/wiki for requirements and use.
88
*/

0 commit comments

Comments
 (0)