flosse / scaleApp

scaleApp is a JavaScript framework for scalable and maintainable One-Page-Applications

Home Page:http://www.scaleapp.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

examples has broken layout under firefox

gaydenko opened this issue · comments

(Reported by mistake)

thanks for that feedback. I'll have a look at it as soon I can find some time.

Sorry, another framework ;) The issue is Stapes related. At the moment I'm evaluating ScaleApp and Stapes, and two tabs were open, and I clicked on the wrong one.

Again, sorry for noise.

The issue is Stapes related. At the moment I'm evaluating ScaleApp and
Stapes, and two tabs were open, and I clicked on the wrong one.

ahh...ok, I've never heard Stapes.

Again, sorry for noise.

Don't be sorry! But I'd love to get some feedback. What parts of scaleApp do you like? Which parts are solved better in an other framework (like Stapes)?

I'm too shortly on the client side (including js and coffee) to have really valuable feedback :) At the moment I try to relate (just in brain yet) scaleApp submodules with nested views. Also rerendering on model change in MVC plugin seems to me to be too strong decision as far as, say, with (that fantastic) rivets.js we just need to load template on the View init and bind a model and template selector via rivets.

At the moment I try to relate (just in brain yet) scaleApp submodules with nested views.
sounds good :)
And yes, rivets.js looks good. Let me know if you've an example up and runnig or if you need some help.

Are submodules recursive?

yes, you can set the inherit flag

core.use(scaleApp.plugins.submodule, {
  inherit: true,     // use all plugins from the parent's Core
  use: [somePlugins] // use some additional plugins
});

I don't mean plugins inheritance, but, say, C and D are submodules of B, while B is submodule of module A.

of course! I added an example into the examples directory.

Great, thanks!