Alex Weissman
Alex Weissman
One of Google's PageSpeed recommendations is to [inline critical, or "above-the-fold" CSS](https://developers.google.com/speed/docs/insights/PrioritizeVisibleContent#structure) and then defer loading the full stylesheet. Needless to say, this is an extra pain in the butt,...
Right now, it is only possible to place a label and a control inside a horizontal form group. We should make it possible to add additional columns, perhaps for images,...
Why do we need to do this: ``` "body" => [ "@template" => $template, "@content" => [ "img_src" => "http://avatars1.githubusercontent.com/u/5004534?v=3&s=400", "img_alt" => "Lord of the Fries", "heading" => "Alex Weissman",...
It would be helpful to have some contributing guidelines, so people know: - What kinds of things can be added to this list - How to categorize a project -...
Would you consider adding a list of suggested alternatives to the readme, in light of Huge's soft EOL? Obviously I'm going to recommend my own project, [UserFrosting](https://www.userfrosting.com), but there are...
The [`pattern`](https://github.com/jquery-validation/jquery-validation/blob/master/src/additional/pattern.js) rule [now accepts](https://github.com/jquery-validation/jquery-validation/issues/223) either a Javascript regex literal or a string, as per the [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp). However the thing I'm not clear on, is why it wraps string-based...
When `Mailer::send` is called, it is supposed to fully clear the state of the underlying PHPMailer object as it pertains to message headers and content. That way, the `Mailer` instance...
In https://github.com/userfrosting/UserFrosting/commit/32e646521e6a3e90685a5661580cbcb751bb15b6, we addressed #757 so that invalid JSON is no longer being returned in responses. However we are still returning a hard-coded response in some places, but throwing exceptions...
The default messages in `HttpException` and its subtypes are actually translator keys. But, the key names are outdated and need to be updated. See for example: https://github.com/userfrosting/support/blob/master/src/Exception/HttpException.php#L38 I believe this...
Right now we rely on Slim's default `NotAllowed` handler for dealing with `MethodNotAllowedException` ([405 errors](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/405)). This sucks because it is stylistically inconsistent and diverges from our generic/debug exception handling system....