Re : Problems when adding revision to CSS/JS names
But I guess the problem when trying to change the name of steal.production.js is the same problem as in this thread: https://forum.javascriptmvc.com/topic/cache-busting-of-steal-production-jsThere's...
View ArticleRe : Problems when adding revision to CSS/JS names
Steal has an uncompressed file: steal.js and a compressed file: steal.production.js. One of these files has to be included in your HTML for steal to work.When you change the name of the production file...
View ArticleSupport for JQuery Mobile 1.3.0 (beta1)
Hi there, Firstly, I'd like to say, what little I know of JavascriptMVC so so far, seems really really impressive. I'd love to start making use of it, there are so many parts of it that really look...
View ArticleCan.view with the new jQuery 1.9
http://jsfiddle.net/xVbbg/I get the following error in console: TypeError: e.createDocumentFragment is not a functionjquery.min.js (line 1)
View ArticleRe : Support for JQuery Mobile 1.3.0 (beta1)
They will be when JMVC 3.3 is released which will be pretty soon. The MVC parts of JMVC are being replaced with CanJS in 3.3, which is currently shipping with 1.8.3You could start building using steal...
View ArticleRe : Support for JQuery Mobile 1.3.0 (beta1)
Oh thats really really great! That answers my question beautifully. Can you see any problems in using the FuncUnit 3.2.4 with JQuery 1.8.3? Anyway, again, thanks a million, I will start reading up on...
View ArticleRe : Support for JQuery Mobile 1.3.0 (beta1)
I've used FuncUnit with CanJS and have not run into any issues.
View ArticleRe : Can.view with the new jQuery 1.9
There's no template to render.You need something like this:<script id="template" type="text/mustache"> {{msg}}</script>
View ArticleRe : Can.view with the new jQuery 1.9
You do not need to surround the template code with script tags for it to work.Please note the template is in another file. Its saved as template.mustache and is presented in my jsfiddle code.I still...
View ArticleRe : Can.view with the new jQuery 1.9
Well there's your problem then. The current release of CanJS supports jQuery 1.8.3. There's a bug open about this exact problem:https://github.com/bitovi/canjs/issues/237
View ArticleRe : Can.view with the new jQuery 1.9
Thank you very much sir, looking forward for your 1.1.4 releaseI should have checked issues presented in your github project.
View ArticleRe : Problems when adding revision to CSS/JS names
Yes, I understand that the production property is our application javascript file, and it is in the code I have posted.Just as the other thread I linked to I want to cache bust the Steal javascript...
View ArticleRe : Can.view with the new jQuery 1.9
I have moved to jQuery 1.9.0 using jquery-migrate-1.0.0.js.It works well with CanJS 1.1.3.After changing my code to comply with jQuery 1.9.0, migrate still generates these warnings:JQMIGRATE:...
View ArticleRe : Can.view with the new jQuery 1.9
Thanks for the input! I stole a little bit from the compatibility plugin and attached a pull request to issue 237. Tests now pass with both, 1.8.x versions and 1.9.0.
View ArticleRefresh models programmatically
Greetings can fans,I am looking into a pub/sub solution where I refresh my models based on received events from faye.If I do another findOne on the model, the new state is not picked up, even though...
View ArticleRe : Refresh models programmatically
If you're binding to the model instance, it should update its props and trigger events if you call findOne. There might be something else wrong?Sent from my iPhoneOn Jan 25, 2013, at 6:05 PM,...
View ArticleDoes findOne supported to take object from "data" field
If a server replices to ModelType.findOne: {data:{object}}is object or data: {object} supposed to be converted to ModelType?
View ArticleRe : Client side model and change events
Is it right to use the following code to trigger this kind of eventcan.trigger(Model, eventName, modelInstance);
View ArticleRe : Can.view with the new jQuery 1.9
Happy to help.Thanks for making CanJS, etc available.
View ArticleRe : Does findOne supported to take object from "data" field
You might have to override .model and .models if I remember correctly.But I could definitely be wrong.
View Article