UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_5a2ab24a7c25
/
public
/
assets
/
js
/
angular
/ [
drwxrwxrwx
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
todo.js
function TodoCtrl($scope) { $scope.todos = [ {text: 'Angular Application', done: true}, {text: 'In eget pretium nisi', done: true}, {text: 'Developed by Akshay', done: true}, {text: 'Sed ac scelerisque ipsum', done: true}, {text: 'build an angular app', done: false}]; $scope.addTodo = function () { $scope.todos.push({text: $scope.todoText, done: false}); $scope.todoText = ''; }; $scope.remaining = function () { var count = 0; angular.forEach($scope.todos, function (todo) { count += todo.done ? 0 : 1; }); return count; }; $scope.archive = function () { var oldTodos = $scope.todos; $scope.todos = []; angular.forEach(oldTodos, function (todo) { if (!todo.done) $scope.todos.push(todo); }); }; }
Copyright © 2026 - UnknownSec