mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +00:00
GUACAMOLE-630: Revert expansion of getFieldHeader() functionality, as it is no longer needed.
This reverts commit d618bdcabf
.
This commit is contained in:
@@ -85,10 +85,8 @@ angular.module('form').directive('guacFormField', [function formField() {
|
|||||||
}) + '-' + new Date().getTime().toString(36);
|
}) + '-' + new Date().getTime().toString(36);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Produces the translation string for the header of the field with
|
* Produces the translation string for the header of the current
|
||||||
* the given name. If no name is supplied, then the name of the
|
* field. The translation string will be of the form:
|
||||||
* current field will be used. The translation string will be of
|
|
||||||
* the form:
|
|
||||||
*
|
*
|
||||||
* <code>NAMESPACE.FIELD_HEADER_NAME<code>
|
* <code>NAMESPACE.FIELD_HEADER_NAME<code>
|
||||||
*
|
*
|
||||||
@@ -96,24 +94,18 @@ angular.module('form').directive('guacFormField', [function formField() {
|
|||||||
* directive and <code>NAME</code> is the field name transformed
|
* directive and <code>NAME</code> is the field name transformed
|
||||||
* via translationStringService.canonicalize().
|
* via translationStringService.canonicalize().
|
||||||
*
|
*
|
||||||
* @param {String} [name]
|
|
||||||
* The name of the field to produce the translation header
|
|
||||||
* string for. If omitted, the name of the current field will
|
|
||||||
* be used.
|
|
||||||
*
|
|
||||||
* @returns {String}
|
* @returns {String}
|
||||||
* The translation string which produces the translated header
|
* The translation string which produces the translated header
|
||||||
* of the field.
|
* of the field.
|
||||||
*/
|
*/
|
||||||
$scope.getFieldHeader = function getFieldHeader(name) {
|
$scope.getFieldHeader = function getFieldHeader() {
|
||||||
|
|
||||||
// If no field, or no name, then no header
|
// If no field, or no name, then no header
|
||||||
name = name || ($scope.field && $scope.field.name);
|
if (!$scope.field || !$scope.field.name)
|
||||||
if (!name)
|
|
||||||
return '';
|
return '';
|
||||||
|
|
||||||
return translationStringService.canonicalize($scope.namespace || 'MISSING_NAMESPACE')
|
return translationStringService.canonicalize($scope.namespace || 'MISSING_NAMESPACE')
|
||||||
+ '.FIELD_HEADER_' + translationStringService.canonicalize(name);
|
+ '.FIELD_HEADER_' + translationStringService.canonicalize($scope.field.name);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -178,4 +170,4 @@ angular.module('form').directive('guacFormField', [function formField() {
|
|||||||
}] // end controller
|
}] // end controller
|
||||||
};
|
};
|
||||||
|
|
||||||
}]);
|
}]);
|
||||||
|
Reference in New Issue
Block a user