mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Replace uri with url
This commit is contained in:
4
public/v1/js/ff/search/index.js
vendored
4
public/v1/js/ff/search/index.js
vendored
@@ -18,8 +18,6 @@
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/** global: searchQuery,searchUri,token */
|
||||
|
||||
|
||||
|
||||
$(function () {
|
||||
@@ -29,7 +27,7 @@ $(function () {
|
||||
});
|
||||
|
||||
function startSearch(query) {
|
||||
$.post(searchUri, {query: query, _token: token}).done(presentSearchResults).fail(searchFailure);
|
||||
$.post(searchUrl, {query: query, _token: token}).done(presentSearchResults).fail(searchFailure);
|
||||
}
|
||||
|
||||
function searchFailure() {
|
||||
|
||||
Reference in New Issue
Block a user