Quantcast
Browsing all 3491 articles
Browse latest View live

Re : Can you use a page's existing jQuery in steal?

My dummy jquery.js is now this:if (window.jQuery) {    steal(function() {        return window.jQuery;    })} else {    steal('../jquery.min.js', function() {        return $;    });}It works.  Build...

View Article


Freezing when changing views

I have a problem. My application works well on ripple emulator. But deploying it on my android tablet, the application freezes when changing the view.Can anyone help me with this?

View Article


Re : Freezing when changing views

How are you making the production build for your application? Views are loaded synchronously in development mode causing the app to block while loading but in production they should be precompiled into...

View Article

Re : Freezing when changing views

I am not sure if i get you but, when i deploy the app, I just compress the app and a change my steal.js to steal.production.js.I am not sure if that is what you are fishing for. 

View Article

Now accepting pull requests: can-steal-bootstrap

https://github.com/aaronpeterson/can-steal-bootstrapWorking on this example.  Currently broken but now accepting pull requests.

View Article


IE10 Error

Just wondering if anyone has seen the following error? SCRIPT5007: Unable to get property 'tagToContentPropMap' of undefined or null reference scanner.js, line 262 character 6

View Article

Re : IE10 Error

And often when I reload my web app, I see the following error: SCRIPT5007: Unable to get property 'register' of undefined or null reference live.js, line 178 character 7

View Article

Funcunit sometimes generate invalid XML files

Using the ouput option to generate an xml file with test result sometimes create broken xml files. The command I use to generate the results xml is:    ./js funcunit/open/phantomjs...

View Article


Fixtures still loaded in production.js

I can successfully build production.js. I have specified ignore: true in shim for all fixtures like this:'app/fixtures/fixtures.js': {                        ignore: true},...

View Article


Re : IE10 Error

I think this is because of supporting old browsers like IE8 and IE7 do you have this tag: "<meta http-equiv="X-UA-Compatible" content="IE=8" />" in the head?Mohamed Cherif BOUCHELAGHEM

View Article

Re : Freezing when changing views

That's what I was getting at. If you have a production version it should work. Any chance you can create a small demo for this?

View Article

Re : IE10 Error

I have the following in the head:<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

View Article

Re : IE10 Error

Try to force it to use content="IE=8"Mohamed Cherif BOUCHELAGHEM

View Article


Re : IE10 Error

Just tried that. Problem still exists.

View Article

Re : Using a suffix breaks steal in IE

I am running into this exact problem. When the suffix is present in development mode, IE is broken and will not load.Once removed, it loads.Here is what I have in my HTML app loading file:<script...

View Article


Re : IE10 Error

The problem is the result of setting steal.suffix in development mode.This breaks IE.Cache busting is a must and so is IE support. That makes this a major PITA. Kinda like me...Another forum member...

View Article

Re : Using a suffix breaks steal in IE

As a temporary workaround I have edited steal.js with the following:ConfigManager.prototype.addSuffix = function( str ) { var suffix = this.attr('env') === 'development' ? undefined :...

View Article


Re : Documentation typo

Thank you. Fixed for the next release. Also, you can edit it yourself if you have a GitHub account by going to https://github.com/bitovi/canjs/blob/master/construct/super/super.md and clicking edit.

View Article

Steal throwing a parsing error in can/view/mustache/mustache.js during...

When I try to build a production.js file for my project I'm seeing steal complain on parsing code inside can/view/mustache/mustache.js. I was able to build a basic example that shows this issue:...

View Article

Re : production.js won't load. Debugging?

How did you get to build uniminified production? I can't seem to build it. I'm bulding command line:./js steal/buildjs app/index.js  -minify falsebut production.js ends up minified ...

View Article
Browsing all 3491 articles
Browse latest View live