scalyr / angular

Code to optimize AngularJS for complex pages
MIT License
847 stars 185 forks source link

Compatibility with Angularjs 1.3.0 rc #15

Open sbeaujard opened 10 years ago

sbeaujard commented 10 years ago

Hello,

It seems sly-show activated with sly-prevent-evaluation-when-hidden are not working correctly anymore on 1.3.0 rc4. Could you check it ?

czerwingithub commented 10 years ago

Our apologies but we don't have enough resources right now to ensure the library works with AngularJS 1.3. We are always open to pull requests from the community to resolve issues like these.

misaizdaleka commented 9 years ago

@sbeaujard I ran into same problem and I think I fixed it by putting the two directive onto different elements:

<div sly-prevent-evaluation-when-hidden>
            <div sly-repeat="dash in dashes" sly-show="evalExpression()">
                <some-directive instance="dash" >

                </some-directive>
            </div>
        </div>