Input Type Switch Button: Changed from < to left triangle (&#10782;)

This commit is contained in:
Nate Jones
2014-08-03 05:31:42 +00:00
parent 89c3683ce2
commit abcc96f0ad
11 changed files with 19 additions and 19 deletions

View File

@@ -408,7 +408,7 @@ function switch_select_destination($select_type, $select_label, $select_name, $s
echo " tbb=document.createElement('INPUT');\n";
echo " tbb.setAttribute('class', 'btn');\n";
echo " tbb.type='button';\n";
echo " tbb.value='<';\n";
echo " tbb.value='&#10782;';\n";
echo " tbb.objs=[obj,tb,tbb];\n";
echo " tbb.onclick=function(){ Replace".$select_id."(this.objs); }\n";
echo " obj.parentNode.insertBefore(tb,obj);\n";
@@ -1636,7 +1636,7 @@ function switch_select_destination($select_type, $select_label, $select_name, $s
echo " </select>\n";
if (if_group("superadmin")) {
echo "<input type='button' id='btn_select_to_input_".$select_id."' class='btn' name='' alt='back' onclick='changeToInput".$select_id."(document.getElementById(\"".$select_id."\"));this.style.visibility = \"hidden\";' value='<'>";
echo "<input type='button' id='btn_select_to_input_".$select_id."' class='btn' name='' alt='back' onclick='changeToInput".$select_id."(document.getElementById(\"".$select_id."\"));this.style.visibility = \"hidden\";' value='&#10782;'>";
}
}