The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
31 views

Getting a Joose 2 class in a different src=“…” file to work in MSIE 8 and below

This page, which implements a JavaScript-based online solver for Freecell, does not work in Microsoft Internet Explorer 8 (and possibly below) on my Windows XP 32-bit virtual machine. It works fine in ...
1
vote
4answers
67 views

Javascript scope referencing outer object

Basically, I use a meta-class framework called Joose for Javascript that allows me to make use of a more elegant class syntax - but I don't know how I might go about referencing the scope of the ...
1
vote
0answers
67 views

joose/javascript based mason2 like server side templates

Exists something like Perlish Mason2 templates for the node.js? Mean something with the following functionality: component based architecture (!!!) (with autohandlers, dhandlers (Base.mc)) on the ...
7
votes
2answers
457 views

Perl: Javascript::V8 templates - from the perl

Looking for template engine like HTML::Mason (or Mason), so what "compiles" source components into perl code, but instead of perl-code will "compile" components into JavaScript code and after ...
3
votes
3answers
1k views

How to dynamically set a function/object name in Javascript as it is displayed in Chrome

This is something which has been bugging me with the Google Chrome debugger and I was wondering if there was a way to solve it. I'm working on a large Javascript application, using a lot of object ...
4
votes
2answers
341 views

How do you use asynchronous ORMs without huge callback chains?

I'm using the relatively immature Joose Javascript ORM plugin (project page) to persist objects in an Appcelerator Titanium (company page) mobile project. Since it's client side storage, the ...
3
votes
1answer
379 views

Joose singleton initialization arguments

I have a singleton class based on Joose and I would like to add initialization arguments to it like this: var programs = Programs.getInstance({ tabContainer: '#tab' }); tabContainer is also ...