diff --git a/public/assets/wechat/app.html b/public/assets/wechat/app.html
index 606164efe..00a55f553 100644
--- a/public/assets/wechat/app.html
+++ b/public/assets/wechat/app.html
@@ -36,7 +36,7 @@
-
+
diff --git a/public/javascripts/wechat/directives/ellipsis.js b/public/javascripts/wechat/directives/ellipsis.js
index a5d5d9845..a5dcfa293 100644
--- a/public/javascripts/wechat/directives/ellipsis.js
+++ b/public/javascripts/wechat/directives/ellipsis.js
@@ -1,25 +1,25 @@
/**
* Created by Tim on 7/22/16.
*/
-app.directive('ellipsisShow',["$timeout",function(timer){
- return{
- restrict: 'A',
- scope: {},
- link: function(scope, element){
- timer(function() {
- var textSplit = element.text().split(" ");
- var newContent = [];
- element.text("");
- for (var i = 0; i < textSplit.length; i++) {
- newContent = newContent + " " + textSplit[i];
- element.text(newContent);
- if(element[0].scrollHeight >= 100){
- newContent = newContent + " " + textSplit[i+1] + " " + textSplit[i+2] + " " + textSplit[i+3] + " " + textSplit[i+4] + "...";
- element.text(newContent);
- break;
- }
- }
- });
- }
- }
-}]);
\ No newline at end of file
+//app.directive('ellipsisShow',["$timeout",function(timer){
+// return{
+// restrict: 'A',
+// scope: {},
+// link: function(scope, element){
+// timer(function() {
+// var textSplit = element.text().split(" ");
+// var newContent = [];
+// element.text("");
+// for (var i = 0; i < textSplit.length; i++) {
+// newContent = newContent + " " + textSplit[i];
+// element.text(newContent);
+// if(element[0].scrollHeight >= 100){
+// newContent = newContent + " " + textSplit[i+1] + " " + textSplit[i+2] + " " + textSplit[i+3] + " " + textSplit[i+4] + "...";
+// element.text(newContent);
+// break;
+// }
+// }
+// });
+// }
+// }
+//}]);
\ No newline at end of file