Re : What's the difference between can.Map.define value and Value??
Ok thank you Alex :) Mohamed Cherif BOUCHELAGHEM
View ArticleRe : canjs + mustache + recursive template rendering
Hi Rolf, <error> when working with recursive Mustaches usually means that your recursive call is looking up the stack at the parent object's property with the same name. This makes it run...
View ArticleMultiple Steal plugins in one?
I'm writing a plugin that enables the use of another CSS pre-processor. I currently have it working with the $less plugin, but I'd also like to set it up with the $css plugin. Is this possible in the...
View ArticleRe : Multiple Steal plugins in one?
Another issue is when building, I get this: error System Register: The module requested myth but this was not declared as a dependency undefined ERROR: Cannot read property 'order' of undefined...
View ArticleRe : Multiple Steal plugins in one?
I currently have it working with the $less plugin, but I'd also like to set it up with the $css plugin. I'm not sure what that means. A CSS pre-processor should really only use the CSS module similar...
View ArticleRe : canjs + mustache + recursive template rendering
Hi air_hadoken,thank you for your answer. that's the solution. I searched the forum before but didn't found that thread :-(.
View ArticleRe : Multiple Steal plugins in one?
@Justin he wants to process the css that less generates as well. @Steven You could inspect the load.address to see if it is a css or less file, that way you would know if you need to run it through the...
View ArticleRe : steal: css! (exclamation mark of css) problem
I don't think there will be any more development of legacy steal unless someone in the community wants to take that on.
View ArticleRe : steal: css! (exclamation mark of css) problem
I just thought maybe someone could hint where to hack. Actually I found how to workaround it in development mode (to modify request method in steal.js): request: function (options, success, error) {...
View ArticleRe : Multiple Steal plugins in one?
I use Less.js mainly for nesting and data-uri() ; occasionally for mixins. I use Myth for what I used to use Less @variables and mixins a lot for. Thanks Matthew, I went with separate files as it...
View ArticleRe : Multiple Steal plugins in one?
If you can push a demo including build script to that repo i can take a look.
View ArticleRe : Multiple Steal plugins in one?
Great!! Uploaded: https://github.com/stevenvachon/sloc-app
View Articleerror / is currently not supported within a tag.
http://canjs.com/docco/view/stache/stache.html#section-19 Is this not supported?: <div {{if something}}class="yay"{{/if}}>
View ArticleRe : error / is currently not supported within a tag.
You need {{#if Sent from my iPhone On Sep 11, 2014, at 8:37 PM, JavaScriptMVC Forum <noreply@zohodiscussions.com> wrote:
View ArticleRe : Multiple Steal plugins in one?
I've tried moving the "myth" path definition to map , but it produced the same error. Moving to ext just says that it can't find the myth file. It works fine in dev mode. Am I approaching this wrong?...
View ArticleRe : Multiple Steal plugins in one?
Add this to your meta information and you're good: myth: { format: "cjs" } The problem was that SystemJS automatically detects which format a file is and mistakenly though myth was AMD. The format...
View ArticleRe : Multiple Steal plugins in one?
By the way, you should be able to fix this in your library so that users don't have to do this themselves. You can do something like this: System.meta.myth = { format: "cjs" }; exports.translate =...
View ArticleRe : Multiple Steal plugins in one?
Adding the meta to stealconfig worked. Thanks! Adding such to the library instead produced the same error mentioned above.
View ArticleRe : Multiple Steal plugins in one?
You'd have to remove the require('myth') of course.
View Article