From a935174b0f9e05990393d91af5545d56ac564bc0 Mon Sep 17 00:00:00 2001 From: Enar Date: Mon, 24 Sep 2018 19:36:32 +0300 Subject: [PATCH] #138, IE fix --- src/main/webapp/app/js/services/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/app/js/services/service.js b/src/main/webapp/app/js/services/service.js index 7f03afc..b483646 100644 --- a/src/main/webapp/app/js/services/service.js +++ b/src/main/webapp/app/js/services/service.js @@ -89,7 +89,7 @@ var constructor = function (utils, configuration, $window, $location, $translate utils.httpGet(configuration.autocompleteUrl, {table: table, term: val, searchField: searchField}, null, null); }; - // POLYFILL FOR INCLUDES METHOD + // Polyfill for includes method, issue #138 (IE fix, 24.09.2018) if (!String.prototype.includes) { String.prototype.includes = function(search, start) { 'use strict';