Re: [qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-24 Thread 689137
T, I forgot to mention that I tried adding it directly to html, but for some reason it didn't work. So I guess I will have to add it through qooxdoo. What are my options? Thanks. -- View this message in context: http://qooxdoo.678.n2.nabble.com/Qooxdoo-setting-a-breakpoint-in-ACE-tp7581774p75

Re: [qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-24 Thread John Spackman
There are (were) issues on Webkit (worse on Chrome but present in Safari) where dynamically added stylesheets would not take effect under certain circumstances I could never pin down; normally, everything is fine and then one day you change the startup of your app (or something similarly innocuous)

Re: [qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-24 Thread thron7
On 10/23/2012 11:59 PM, 689137 wrote: > Hi, > > I am working on enabling breakpoints in embedded editor. > I found in google groups that the following code needs to be added: > > editor.on("guttermousedown", function(e){ > var target = e.domEvent.target; > if (target.className.indexOf("a

[qooxdoo-devel] Qooxdoo, setting a breakpoint in ACE

2012-10-23 Thread 689137
Hi, I am working on enabling breakpoints in embedded editor. I found in google groups that the following code needs to be added: editor.on("guttermousedown", function(e){ var target = e.domEvent.target; if (target.className.indexOf("ace_gutter-cell") == -1) return; if (!ed