Tomasz Sawicki
Tomasz Sawicki
I too think that the example is not exactly as in definition. My shot at this: ```php interface HumanResource { public function getName() : string; public function setSalary(float $salary); public...
@kelunik Look at the end of the post:)
I have just experienced the same problem - forcing migration when the state is `partial up` won't apply failed migration again. I always use transaction in my migration scripts so...
You can't force to always use transactions because some databases ignore transactions when doing DDL (ex. Oracle). Maybe `atomic` flag in migration metadata could be introduced and then: ```php if...
Yeah, but it ain't pretty ([JSFiddle](https://jsfiddle.net/745jptoy/)): ```javascript function changeHandler($select) { var $selected_options = $select.find('option:selected') // and so on } $('select').multiselect( { includeResetOption: true, onChange: function () { changeHandler(this.$select) } }...
Great. I used `top: calc(50% - ((1em + 2px)/2))` instead of `top: 0`, to center it horizontally.
By the way, this submit event listener is added for every call to autosave, so with short delay and long document it won't be nice... There should be some `this.options.autosave.binded`...
I've created pull request #577.
This could be useful for "how it should work": https://www.w3.org/TR/wai-aria-practices/examples/dialog-modal/datepicker-dialog.html
Why not change underlined parts to `$(this).html()`? Just in case sanitization won't work. 