Content deleted Content added
Ohconfucius (talk | contribs) Undid revision 423629927 by Ohconfucius (talk) |
Ohconfucius (talk | contribs) +functionality |
||
Line 680:
}
function Ohc_delink_ISOxs_to_dmy() {
var txt = document.editform.wpTextbox1;
txt.value = spork_yyyymmdd_to_dmy(txt.value); // from User:Plastikspork/datetools.js
Ohc_remove_leading_zeros_from_nonlinked_dates ();
}
function Ohc_delink_ISOxs_to_mdy() {
var txt = document.editform.wpTextbox1;
txt.value = spork_yyyymmdd_to_mdy(txt.value); // from User:Plastikspork/datetools.js
Ohc_remove_leading_zeros_from_nonlinked_dates ();
}
function Ohc_delink_year_in_X(){
Line 1,101 ⟶ 1,118:
function Ohc_ISO_to_dmy() {
Ohc_delink_ISO_to_dmy();
Ohc_delink_ISOxs_to_dmy()
// Ohc_MOSNUM_edit_summary();
}
Line 1,106 ⟶ 1,124:
function Ohc_ISO_to_mdy() {
Ohc_delink_ISO_to_mdy();
Ohc_delink_ISOxs_to_mdy()
// Ohc_MOSNUM_edit_summary();
}
|