Various QQ File uploaders updates

This commit is contained in:
Clemens Schwaighofer
2018-07-26 14:58:44 +09:00
parent 71ab3e27bd
commit 03ff1862c1
6 changed files with 207 additions and 92 deletions

View File

@@ -301,6 +301,17 @@ function acssel(element, css)
}
}
// METHOD: scssel
// PARAMS: element, style to remove, style to add
// RETURN: "none", in place add because of reference
// DESC : removes one css and adds another
// is a wrapper around rcssel/acssel
function scssel(element, rcss, acss)
{
rcssel(element, rcss);
acssel(element, acss);
}
// METHOD: phfo [produce html from object]
// PARAMS: object tree with dom element declarations
// RETURN: HTML string that can be used as innerHTML