Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please Update examples with latest version of Angular JS #9

Open
Mazzzy opened this issue Jul 30, 2014 · 2 comments
Open

Please Update examples with latest version of Angular JS #9

Mazzzy opened this issue Jul 30, 2014 · 2 comments

Comments

@Mazzzy
Copy link

Mazzzy commented Jul 30, 2014

The examples are according to angular version for years 2010-2012. Please update it so that the examples will work with latest version without any error.

@bilw
Copy link

bilw commented Aug 30, 2015

This is a more recent approach to the app.js file.

var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope){
$scope.visible = true;

$scope.toggle = function(){
$scope.visible = !$scope.visible;
};
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants