<div class="row col-md-12">
<eg-marc-edit-fixed-field fixed-field="Type" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="ELvl" record="record"></eg-marc-edit-fixed-field>
- <eg-marc-edit-fixed-field fixed-field="Srce" record="record"></eg-marc-edit-fixed-field>
+ <eg-marc-edit-fixed-field fixed-field="Source" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="Audn" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="Ctrl" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="Lang" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="Name" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="Status" record="record"></eg-marc-edit-fixed-field>
<eg-marc-edit-fixed-field fixed-field="ModRec" record="record"></eg-marc-edit-fixed-field>
- <eg-marc-edit-fixed-field fixed-field="Source" record="record"></eg-marc-edit-fixed-field>
</div>
</div>
</div>
replace: true,
controller : ['$scope', '$element', 'egTagTable',
function ( $scope , $element , egTagTable) {
+ $($element).removeClass('fixed-field-box');
$($element).children().css({ display : 'none' });
$scope.me = null;
$scope.content = null; // this is where context menus dump their values
if (ff.fixed_field == $scope.fixedField && ff.rec_type == $scope.rtype) {
$scope.me = ff;
$scope.ready = true;
+ $($element).addClass('fixed-field-box');
$($element).children().css({ display : 'inline' });
var input = $($element).find('input');