Skip to content

Commit f64782f

Browse files
committed
Merge pull request #82 from upfrontIO/normalize-spaces
Remove content.normalizeSpaces()
2 parents 00270c9 + 2a34167 commit f64782f

File tree

13 files changed

+749
-147
lines changed

13 files changed

+749
-147
lines changed

.jshintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"Spellcheck": true,
4747
"NodeIterator": true,
4848
"highlightText": true,
49-
"nodeType": true
49+
"nodeType": true,
50+
"clipboard": true
5051
}
5152
}

Changelog.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1+
# v0.4.1
12

2-
# v0.4.0 (2014-08-29)
3+
#### Features
4+
5+
- Filter pasted content [#84](https://github.com/upfrontIO/editable.js/pull/84)
6+
7+
#### Bugfixes
8+
9+
- Remove content.normalizeSpaces() [#82](https://github.com/upfrontIO/editable.js/issues/82)
10+
11+
12+
# v0.4.0
313

414
#### Features
515

@@ -17,13 +27,13 @@
1727
- Separate instance and global configuration. Fixes [#75](https://github.com/upfrontIO/editable.js/issues/75)
1828

1929

20-
# v0.3.2 (2014-06-11)
30+
# v0.3.2
2131

2232
- publish package in bower and npm
2333
- Change naming of github repo (change to lowercase)
2434

2535

26-
# v0.3.0 (2014-06-11)
36+
# v0.3.0
2737

2838
#### Features
2939

@@ -35,14 +45,14 @@
3545
- Set Focus in iFrame properly [657f85](https://github.com/upfrontIO/Editable.JS/commit/657f85d1c1a0f9d3018548654271616c41480b2b)
3646

3747

38-
# v0.2.0 (2014-03-31)
48+
# v0.2.0
3949

4050
#### Breaking Changes
4151

4252
- API change: create instances of EditableJS [#65](https://github.com/upfrontIO/Editable.JS/pull/65)
4353

4454

45-
# v0.1.2 (2014-03-07)
55+
# v0.1.2
4656

4757
- [Add selection methods](https://github.com/upfrontIO/Editable.JS/pull/64)
4858
- New Selection methods:
@@ -51,6 +61,6 @@
5161
- New Cursor and Selection method:
5262
#setVisibleSelection() (alias for #setSelection())
5363

54-
# v0.1.1 (2014-01-24)
64+
# v0.1.1
5565

5666
- Setup Versioning

Gruntfile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,17 @@ module.exports = function(grunt) {
105105
'.tmp/editable.js': [
106106
'editable.prefix',
107107
'src/util/*.js',
108+
'src/config.js',
108109
'src/core.js',
109-
'src/!(core).js',
110+
'src/!(core|config).js',
110111
'editable.suffix'
111112
],
112113
'.tmp/editable-test.js': [
113114
'editable.prefix',
114115
'src/util/*.js',
116+
'src/config.js',
115117
'src/core.js',
116-
'src/!(core).js',
118+
'src/!(core|config).js',
117119
'spec/**/*.js',
118120
'editable.suffix'
119121
]

0 commit comments

Comments
 (0)