Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Collins committed Dec 21, 2014
1 parent 6e47362 commit 4da1529
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "ment.io",
"main": "dist/mentio.js",
"version": "0.9.19",
"version": "0.9.20",
"homepage": "https://github.com/jeff-collins/ment.io",
"authors": [
"jeff-collins <i.am.jeff.collins@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion dist/mentio.js
Expand Up @@ -432,7 +432,7 @@ angular.module('mentio', [])
/* text is a promise, at least our best guess */
text.then(scope.replaceText);
} else {
scope.replaceText(text);
scope.replaceText(text, true);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/mentio.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ment.io",
"version": "0.9.19",
"version": "0.9.20",
"description": "Mentions for Angular",
"main": "dist/mentio.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/mentio.directive.js
Expand Up @@ -432,7 +432,7 @@ angular.module('mentio', [])
/* text is a promise, at least our best guess */
text.then(scope.replaceText);
} else {
scope.replaceText(text);
scope.replaceText(text, true);
}
}
}
Expand Down

0 comments on commit 4da1529

Please sign in to comment.