Skip to content

Commit

Permalink
#138, IE fix
Browse files Browse the repository at this point in the history
  • Loading branch information
enmust committed Sep 24, 2018
1 parent 6d8b334 commit a935174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/app/js/services/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit a935174

Please sign in to comment.