Auto trim row as per width in HTML Get link Facebook X Pinterest Email Other Apps By Gaurav Goyal - February 22, 2016 Here is the CSS for the same : .trimLine { white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-height:27px; padding:0px; margin:0px; } Read more
Show trusted HTML in AngularJS Get link Facebook X Pinterest Email Other Apps By Gaurav Goyal - February 22, 2016 angular.module('myAngApp.filters', []). filter("sanitize", ['$sce', function($sce) { return function(htmlCode){ return $sce.trustAsHtml(htmlCode); } }]); Read more
Convert HTML into Plain Text in AngularJS Get link Facebook X Pinterest Email Other Apps By Gaurav Goyal - February 22, 2016 angular.module('myAngApp.filters', []). filter('ConvertToPlainText', function() { return function(text) { return angular.element(text).text(); } } ); Read more