JoolsCaesar

Results 4 issues of JoolsCaesar

### Description ### Possibly related to #4867, I have replicated this in version 3.5.1 and 3.6. The linked example below uses 3.6. I haven't tested Firefox, but both Chrome and...

Bug
Event

### Description ### In jQuery 3.0.0 the width and height functions were changed to respect things like css zoom. This change ended up being reverted in 3.1.0. https://github.com/jquery/jquery/issues/3193 One of...

Dimensions

**Bug report or feature request?** Feature request I have source code with several `debugger;` statements scattered around. When I minify this code, I want to remove all but one of...

Take the following example: ``` $.widget('test.greet', { options: {names:['anonymous']}, _create: function(){ this.options.names.unshift('Hello'); console.log(this.options.names.join(' ')); } }); $('').greet({names:['Jools']}); $('').greet(); $('').greet(); $('').greet({names:['Adam']}); $('').greet(); ``` Expected output: ``` Hello Jools Hello anonymous Hello...

Comp: Widget
Behavior shared with 1.12