From c6d2a0ee4ac00b2cbd65b89945fde667c5825a78 Mon Sep 17 00:00:00 2001 From: Martin Date: Tue, 26 Aug 2014 20:25:15 +0200 Subject: [PATCH] Avoid hashbangs in https://twitter.com/search?q= --- twitter-text.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/twitter-text.js b/twitter-text.js index b27ebfd..727cf9e 100644 --- a/twitter-text.js +++ b/twitter-text.js @@ -657,9 +657,9 @@ options = clone(options || {}); options.hashtagClass = options.hashtagClass || DEFAULT_HASHTAG_CLASS; - options.hashtagUrlBase = options.hashtagUrlBase || "https://twitter.com/#!/search?q=%23"; + options.hashtagUrlBase = options.hashtagUrlBase || "https://twitter.com/search?q=%23"; options.cashtagClass = options.cashtagClass || DEFAULT_CASHTAG_CLASS; - options.cashtagUrlBase = options.cashtagUrlBase || "https://twitter.com/#!/search?q=%24"; + options.cashtagUrlBase = options.cashtagUrlBase || "https://twitter.com/search?q=%24"; options.listClass = options.listClass || DEFAULT_LIST_CLASS; options.usernameClass = options.usernameClass || DEFAULT_USERNAME_CLASS; options.usernameUrlBase = options.usernameUrlBase || "https://twitter.com/";