HOME | DD

DaKoder — CloudDesk Preview 9 - v6.0

Published: 2013-03-08 18:34:35 +0000 UTC; Views: 835; Favourites: 3; Downloads: 0
Redirect to original
Description This preview shows the new feature filled, advanced, rich text editor, the new icons, and fixed up taskbar. Read the blog for daily updates!
Related content
Comments: 20

MrTechnoholic [2013-03-09 14:47:52 +0000 UTC]

You guys are the best HTML pros I know! Keep up!

👍: 0 ⏩: 1

DaKoder In reply to MrTechnoholic [2013-03-09 15:39:13 +0000 UTC]

Thanks man! Tim and I work very well together .

👍: 0 ⏩: 0

DevilishDB [2013-03-08 19:41:21 +0000 UTC]

Wow the "online-word" looks amazing!

👍: 0 ⏩: 2

DaKoder In reply to DevilishDB [2013-03-08 19:51:33 +0000 UTC]

Ohhhh, I thought you meant the word "online". Lol, thanks!

👍: 0 ⏩: 0

DaKoder In reply to DevilishDB [2013-03-08 19:45:47 +0000 UTC]

Where?

👍: 0 ⏩: 1

DevilishDB In reply to DaKoder [2013-03-08 19:52:00 +0000 UTC]

The text editor, you described it as 'like Word but online' on your blog

👍: 0 ⏩: 1

DaKoder In reply to DevilishDB [2013-03-08 19:52:33 +0000 UTC]

Yeah, I just realized that.

👍: 0 ⏩: 0

PeterRollar [2013-03-08 19:08:37 +0000 UTC]

Looks great.

👍: 0 ⏩: 0

simobortolo [2013-03-08 19:04:02 +0000 UTC]

Nice!!

👍: 0 ⏩: 0

simobortolo [2013-03-08 19:03:52 +0000 UTC]

Nice!!

👍: 0 ⏩: 0

simobortolo [2013-03-08 19:03:47 +0000 UTC]

Nice!!

👍: 0 ⏩: 0

ntim007 [2013-03-08 18:53:04 +0000 UTC]

don't know if you noticed but i made the context mennu

👍: 0 ⏩: 2

DevilishDB In reply to ntim007 [2013-03-08 20:59:31 +0000 UTC]

Can you help me with the contextmenu on Galaxy so that it opens where the mouse is instead of the default position? Thanks

👍: 0 ⏩: 1

ntim007 In reply to DevilishDB [2013-03-08 21:04:42 +0000 UTC]

try looking up on google how to get current mouse position jquery.
Then set the top and left css properties using the mouse position.

👍: 0 ⏩: 3

DevilishDB In reply to ntim007 [2013-03-09 08:43:02 +0000 UTC]

Actually I just realized it does have some other bugs so instead of keeping it on the site, I've put it here instead:


$(function () {
$("#menu").menu({
autoOpen: true,
});
$("html").mouseover(function () {
},
function () {
})
.mousemove(function (e) {
$("#menu").menu("option", { position: [e.pageX+5, e.pageY+5] });
});
});

👍: 0 ⏩: 2

ntim007 In reply to DevilishDB [2013-03-09 09:16:41 +0000 UTC]

And as I said, set the top and left css.
$(function () {
$("body").contextmenu(function() {
$("#menu").css("top",e.pageY+5);
$("#menu").css("left",e.pageX+5);

👍: 0 ⏩: 0

ntim007 In reply to DevilishDB [2013-03-09 09:14:21 +0000 UTC]

replace mousemove with context menu..

And i think doing it without jquery ui menu would be better.

👍: 0 ⏩: 0

DevilishDB In reply to ntim007 [2013-03-09 08:15:40 +0000 UTC]

I tried it but it won't work can you help me fix it? (I'll leave the code in so you can see it since it doesn't break anything else it just doesn't work itself, then you can see what's wrong.) Thanks

👍: 0 ⏩: 0

DevilishDB In reply to ntim007 [2013-03-08 21:19:46 +0000 UTC]

Thanks!

👍: 0 ⏩: 0

DaKoder In reply to ntim007 [2013-03-08 19:04:47 +0000 UTC]

Really? Oops, I'll put that on the blog, sorry!

👍: 0 ⏩: 0