jquery-timeago
jquery-timeago copied to clipboard
JQuery Deprecated Methods
trafficstars
JQuery has deprecated trim and isFunction methods.
Replace $.trim() with value.trim()..
$.trim(element.text()) becomes element.text().trim()
Replace $.isFunction(stringOrFunction) with typeof stringOrFunction === "function"
Thank you. A pull-request here would be much appreciated.