Skip to content

Commit 355b9e4

Browse files
committed
update to v1.5.0
1 parent e24b563 commit 355b9e4

7 files changed

+19
-8
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### v1.5.0
2+
3+
add `headerTpl` settings
4+
5+
* 7a41d93 - #375 from vcekov/fix_scroll_position - Valentin Cekov
6+
* ecbf34f - #373 from vcekov/val/fix_key_navigation_interefence_with_mouse - Valentin Cekov
7+
* b68cf84 - #364 from WorktileTech/master - Harold.Luo
8+
* f836f04 - #372 from vcekov/fix_caret_for_space_after_@ - Harold.Luo
9+
* 06cf6bb - Properly set caret position after failed match - Valentin Cekov
10+
* c9ed2e2 - support header template. - htz
11+
112
### v1.4.0
213

314
#### Contenteditable

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "At.js",
3-
"version": "1.4.0",
3+
"version": "1.5.0",
44
"main": [
55
"dist/js/jquery.atwho.js",
66
"dist/css/jquery.atwho.css"

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "At.js",
33
"repo": "ichord/At.js",
44
"description": "Add Github like mentions autocomplete to your application.",
5-
"version": "1.4.0",
5+
"version": "1.5.0",
66
"demo": "http://ichord.github.com/At.js",
77
"dependencies": {
88
"ichord/Caret.js": "~0.2.2",

dist/js/jquery.atwho.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* at.js - 1.4.0
2+
* at.js - 1.5.0
33
* Copyright (c) 2016 chord.luo <[email protected]>;
44
* Homepage: http://ichord.github.com/At.js
55
* License: MIT

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ gulp.task('umd', function() {
4343

4444
gulp.task('bump', function() {
4545
gulp.src(['bower.json', 'component.json', 'package.json'])
46-
.pipe(bump({version: "1.4.0"}))
46+
.pipe(bump({version: "1.5.0"}))
4747
.pipe(gulp.dest('./'));
4848
});
4949

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
<meta http-equiv="x-ua-compatible" content="IE=Edge"/>
55
<title>At.js</title>
66
<link rel="stylesheet" href="dist/css/jquery.atwho.css" />
7-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
7+
<script type="text/javascript" src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
88
<script type="text/javascript" src="http://ichord.github.io/Caret.js/src/jquery.caret.js"></script>
9-
<!-- // <script type="text/javascript" src="bower_components/jquery/dist/jquery.js"></script>
10-
// <script type="text/javascript" src="bower_components/Caret.js/dist/jquery.caret.js"></script> -->
9+
<!-- <script type="text/javascript" src="bower_components/jquery/dist/jquery.js"></script> -->
10+
<!-- <script type="text/javascript" src="bower_components/Caret.js/dist/jquery.caret.js"></script> -->
1111
<script type="text/javascript" src="dist/js/jquery.atwho.js"></script>
1212
<script type="text/javascript">
1313
$(function(){

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"homepage": "http://ichord.github.com/At.js",
99
"license": "MIT",
10-
"version": "1.4.0",
10+
"version": "1.5.0",
1111
"repository": {
1212
"type": "git",
1313
"url": "https://github.com/ichord/At.js"

0 commit comments

Comments
 (0)