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
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)
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
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