function _equalheights_selector_unfold in Equal Heights jQuery 7.2
Make a better user readable version of the selector.
Replace comma by comma followed by a new line. Spaces before and after a comma are removed.
1 call to _equalheights_selector_unfold()
File
- ./
equalheights.admin.inc, line 126 - Provides the administration page for Equal Heights.
Code
function _equalheights_selector_unfold($selector) {
$select = _equalheights_selector_fold($selector);
return preg_replace("/\\s*\\,\\s*/", ",\n", $selector);
}