Jimmy Thomsen

Results 97 issues of Jimmy Thomsen

Hi, Pressing CTRL + F to search the document will cause Gedit to crash when Split View is enabled. I'm using Gedit 3.6.1 on Ubuntu 12.10 Kind regards Jimmy

Hi. Thanks a million for creating this plugin - it's very useful since I often need to manipulate code in different areas of the same document. Unfortunately I find it...

Hi. I had a source file that declared a local variable like this: ``` var interface = { Something: function() { ... } } ``` This results in Madge skipping...

core
cli

See https://jsfiddle.net/Ltku859n/1/ Example also attached at the bottom of this report. Scroll down the content and click somewhere within the dialog. Observe how the content is scrolled back to the...

bug

Fit.UI relies on the browser's Garbage Collector to reclaim memory - we do that by nullifying all variables within a control. But to my surprise this does not guarantee that...

bug
memory leak

See https://jsfiddle.net/zhewnm1a/ Notice how the control appears dimmed as if it was disabled. When we select a value, the arrow becomes visibly darker and now appears enabled. ![image](https://github.com/Jemt/Fit.UI/assets/1258714/87da842d-947d-4b43-8df6-306cf9c023be) ``` Fit.Events.OnReady(function()...

minor bug

See https://jsfiddle.net/kvu2qcrm/6/ Try the 3 test cases in the JavaScript code. Notice how the combination of DropDownMaxWidth(600) + DetectBoundaries(true) causes the pull down menu to open to the left side,...

bug

See the following example: https://jsfiddle.net/wL7qe2bv/4/ For different font-sizes the selected items do not always align properly. ![image](https://user-images.githubusercontent.com/1258714/214934442-e1bcacca-678d-4535-996d-795d4ee67799.png) The problem is probably related to: https://github.com/Jemt/Fit.UI/blob/bae9ac2a840f18a0b9bc54807c9ba480616680b4/Controls/DropDown/DropDown.css#L132 Try adjusting the font-size a bit...

minor bug

Consider the following example: https://jsfiddle.net/o3t8pnhk/4/ **HTML** ``` ``` **StyleSheet** ``` #Page { width: 600px; height: 300px; border: 1px solid red; padding: 1em; overflow: auto; } ``` **JavaScript** ``` Fit.Events.OnReady(function() {...

minor bug

Arrays containing _undefined_ will have this "value" replaced by _null_ as the following example demonstrates: `Fit.Core.Clone({ List: ["a", undefined, "c"] });` outputs `{ List: ["a", null, "c"] }` The problem...

bug