PHP Classes

File: front/js/index.js

Recommend this page to a friend!
  Classes of Boss Ibrahim Mussa   PHP Payment Management System   front/js/index.js   Download  
File: front/js/index.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Payment Management System
Web application to manage company payments
Author: By
Last change:
Date: 2 years ago
Size: 1,145 bytes
 

Contents

Class file image Download
var app = angular.module("myApp", ["ngRoute"]); app.config(function($routeProvider) { $routeProvider .when("/", { templateUrl : "template/home.html", controller:"homeCtrl" }) .when("/addAgent", { templateUrl : "template/addAgent.html", controller:"addAgentCtrl" }) .when("/detailEmployee", { templateUrl : "template/detailEmployee.html", controller:"detailEmployeeCtrl" }) .when("/detailEmployee/:id", { templateUrl : "template/detailEmployee.html", controller:"detailEmployeeCtrl" }) .when("/listEmployee", { templateUrl : "template/listEmployee.html", controller:"employeeListCtrl" }) .when("/config", { templateUrl : "template/config.html", controller:"congigCtrl" }) .when("/login", { templateUrl : "template/login.html" }); }); function myFunction() { var x = document.getElementById("Demo"); if (x.className.indexOf("w3-show") == -1) { x.className += " w3-show"; } else { x.className = x.className.replace(" w3-show", ""); } }