Add tooltip describing arming disable flags
parent
c125c39040
commit
57518f3fcd
|
@ -457,6 +457,9 @@
|
|||
"initialSetupArmingAllowed": {
|
||||
"message": "Arming Allowed"
|
||||
},
|
||||
"initialSetupArmingDisableFlagsTooltip": {
|
||||
"message": "List of flags indicating why arming is currently not allowed. Please refer to the Wiki for a description of what these flags mean."
|
||||
},
|
||||
"initialSetupGPSHead": {
|
||||
"message": "GPS"
|
||||
},
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
<div class="spacer_box">
|
||||
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="cf_table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<tr id="arming-disable-flag-row" class="cf_tip">
|
||||
<td i18n="initialSetupArmingDisableFlags"></td>
|
||||
<td class="arming-disable-flags">0</td>
|
||||
</tr>
|
||||
|
|
|
@ -59,6 +59,9 @@ TABS.setup.initialize = function (callback) {
|
|||
|
||||
self.initializeInstruments();
|
||||
|
||||
|
||||
$('#arming-disable-flag-row').attr('title', chrome.i18n.getMessage('initialSetupArmingDisableFlagsTooltip'));
|
||||
|
||||
// UI Hooks
|
||||
$('a.calibrateAccel').click(function () {
|
||||
var self = $(this);
|
||||
|
|
Loading…
Reference in New Issue