Skip to content

Commit 801c87d

Browse files
committed
dump version v1.5.4
to bring back `functionOverrides` setting close ichord#486
1 parent 1e9f45a commit 801c87d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "At.js",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
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.5.3",
5+
"version": "1.5.4",
66
"demo": "http://ichord.github.com/At.js",
77
"dependencies": {
88
"ichord/Caret.js": "~0.2.2",

dist/js/jquery.atwho.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* at.js - 1.5.3
2+
* at.js - 1.5.4
33
* Copyright (c) 2017 chord.luo <chord.luo@gmail.com>;
44
* Homepage: http://ichord.github.com/At.js
55
* License: MIT
@@ -88,7 +88,7 @@ DEFAULT_CALLBACKS = {
8888
});
8989
},
9090
tplEval: function(tpl, map) {
91-
var error, template;
91+
var error, error1, template;
9292
template = tpl;
9393
try {
9494
if (typeof tpl !== 'string') {
@@ -142,7 +142,7 @@ App = (function() {
142142
};
143143

144144
App.prototype.setupRootElement = function(iframe, asRoot) {
145-
var error;
145+
var error, error1;
146146
if (asRoot == null) {
147147
asRoot = false;
148148
}
@@ -408,7 +408,7 @@ Controller = (function() {
408408
};
409409

410410
Controller.prototype.callDefault = function() {
411-
var args, error, funcName;
411+
var args, error, error1, funcName;
412412
funcName = arguments[0], args = 2 <= arguments.length ? slice.call(arguments, 1) : [];
413413
try {
414414
return DEFAULT_CALLBACKS[funcName].apply(this, args);
@@ -434,7 +434,7 @@ Controller = (function() {
434434
};
435435

436436
Controller.prototype.getOpt = function(at, default_value) {
437-
var e;
437+
var e, error1;
438438
try {
439439
return this.setting[at];
440440
} catch (error1) {

dist/js/jquery.atwho.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.5.3"}))
46+
.pipe(bump({version: "1.5.4"}))
4747
.pipe(gulp.dest('./'));
4848
});
4949

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.5.3",
10+
"version": "1.5.4",
1111
"repository": {
1212
"type": "git",
1313
"url": "https://github.com/ichord/At.js"

0 commit comments

Comments
 (0)