Corrected dedicated icon selector.

This commit is contained in:
alextselegidis 2016-10-06 21:10:56 +02:00
parent 4996dd014a
commit f3c201854a
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* Providers Helper * Providers Helper
* *
* This class contains the Providers helper class declaration, along with the "Providers" tab * This class contains the Providers helper class declaration, along with the "Providers" tab
* event handlers. By deviding the backend/users tab functionality into separate files * event handlers. By dividing the backend/users tab functionality into separate files
* it is easier to maintain the code. * it is easier to maintain the code.
* *
* @class ProvidersHelper * @class ProvidersHelper
@ -396,7 +396,7 @@
// Add dedicated provider link. // Add dedicated provider link.
var dedicatedUrl = GlobalVariables.baseUrl + '/index.php?provider=' + encodeURIComponent(provider.id); var dedicatedUrl = GlobalVariables.baseUrl + '/index.php?provider=' + encodeURIComponent(provider.id);
var linkHtml = '<a href="' + dedicatedUrl + '"><span class="glyphicon glyphicon-link"></span></a>'; var linkHtml = '<a href="' + dedicatedUrl + '"><span class="glyphicon glyphicon-link"></span></a>';
$('#providers .record-details h3') $('#providers .details-view h3')
.find('a') .find('a')
.remove() .remove()
.end() .end()