Input Type Switch Button: Changed from left triangle (⨞) to left triangle (◁), as wasn't displaying properly in FF on Mac.

This commit is contained in:
Nate Jones
2014-08-03 07:02:12 +00:00
parent 0c523370da
commit 5bb2bea640
13 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -1326,7 +1326,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
tbb.setAttribute('class', 'btn');
tbb.setAttribute('style', 'margin-left: 4px;');
tbb.type='button';
tbb.value=$("<div />").html('&#10782;').text();
tbb.value=$("<div />").html('&#9665;').text();
tbb.objs=[obj,tb,tbb];
tbb.onclick=function(){ replace_device_mac_address(this.objs); }
obj.parentNode.insertBefore(tb,obj);
@@ -1365,7 +1365,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
}
unset($sql, $result, $result_count);
echo " </select>\n";
echo " <input type='button' id='btn_select_to_input_device_mac_address' class='btn' name='' alt='".$text['button-back']."' onclick='changeToInput_device_mac_address(document.getElementById(\"device_mac_address\"));this.style.visibility = \"hidden\";' value='&#10782;'>\n";
echo " <input type='button' id='btn_select_to_input_device_mac_address' class='btn' name='' alt='".$text['button-back']."' onclick='changeToInput_device_mac_address(document.getElementById(\"device_mac_address\"));this.style.visibility = \"hidden\";' value='&#9665;'>\n";
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";