├── .gitattributes ├── AngularJS_Starter_Files ├── 01_Angular_First_App │ ├── 01_Angular_First_App.html │ └── 01_app.js ├── 02_Angular_Ng_Init_Ng_If │ ├── 02_Angular_ng_init_ng_if.html │ └── 02_app.js ├── 03_Angular_ng_model │ ├── 03_Angular_ng_model.html │ └── 03_app.js ├── 04_Angular_ng_app_ng_Controller │ ├── 04_Angular_ng_app_ng_Controller.html │ └── 04_app.js ├── 05_Angular_The_Clock_App │ ├── 05_Angular_The_Clock_App.html │ └── 05_app.js ├── 06_Angular_Nested_Controllers │ ├── 06_Angular_Nested_Controller.html │ └── 06_app.js ├── 07_Angular_Controller_As │ ├── 07_Angular_Controller_As.html │ └── 07_app.js ├── 08_Angular_Calculator_App │ ├── 08_Angular_Calculator_App.html │ └── 08_app.js ├── 09_Angular_ng_show_ng_hide │ ├── 09_Angular_ng_show_ng_hide.html │ └── 09_app.js ├── 10_Angular_ng_repeat │ ├── 10_Angular_ng_repeat.html │ └── 10_app.js ├── 11_Angular_Todo_App │ ├── 11_Angular_Todo_App.html │ └── 11_app.js ├── 12_Angular_Number_App │ ├── 12_Angular_Number_App.html │ └── 12_app.js ├── 13_Angular_Contact_App │ ├── 13_Angular_Contact_App.html │ ├── 13_app.js │ └── db.json ├── 14_Angular_Invoice_App │ ├── 14_Angular_Invoice.html │ ├── 14_app.js │ ├── 14_styles.css │ └── img │ │ ├── signature.png │ │ └── uibrains.png ├── angular │ ├── angular.js │ └── angular.min.js ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── fontawesome-all.css │ │ ├── mdb.css │ │ ├── mdb.min.css │ │ └── style.css │ ├── font │ │ └── roboto │ │ │ ├── Roboto-Bold.eot │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Bold.woff │ │ │ ├── Roboto-Bold.woff2 │ │ │ ├── Roboto-Light.eot │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-Light.woff │ │ │ ├── Roboto-Light.woff2 │ │ │ ├── Roboto-Medium.eot │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-Medium.woff │ │ │ ├── Roboto-Medium.woff2 │ │ │ ├── Roboto-Regular.eot │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Regular.woff │ │ │ ├── Roboto-Regular.woff2 │ │ │ ├── Roboto-Thin.eot │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-Thin.woff │ │ │ └── Roboto-Thin.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── fontawesome-all.js │ │ ├── holder.min.js │ │ ├── jquery-3.2.1.min.js │ │ ├── mdb.js │ │ ├── mdb.min.js │ │ ├── navbar-fixed.js │ │ └── popper.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ └── svg │ │ ├── arrow_left.svg │ │ └── arrow_right.svg └── naveen1.png └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /AngularJS_Starter_Files/01_Angular_First_App/01_Angular_First_App.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |08/07/2018
24 |08/07/2018
34 |07/08/2018
45 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate, rerum?
63 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate, rerum?
67 |Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate, rerum?
71 |SNO | 51 |Name | 52 |Gender | 53 |City | 54 |State | 55 |Postal Code | 56 |
---|---|---|---|---|---|
1 | 61 |NAVEEN SAGGAM | 62 |Male | 63 |Hyderabad | 64 |Talangana | 65 |5000100 | 66 |
88888888
87 |28001988
90 |86 | | Description | 87 |Quantity | 88 |Cost (₹) | 89 |Total (₹) | 90 |
---|---|---|---|---|
95 | 98 | | 99 |
100 |
101 |
102 |
103 | |
104 |
105 |
106 |
107 |
108 | |
109 |
110 |
111 |
112 |
113 | |
114 | 115 | ₹ 0.00 116 | | 117 |
120 | 123 | | 124 |||||
127 | | Sub Total | 128 |129 | ₹ 0.00 130 | | 131 |||
134 | | GST(%) 135 | 136 | | 137 |138 | ₹ 0.00 139 | | 140 |||
143 | | Grand Total | 144 |145 | ₹ 0.00 146 | | 147 |
Authorized Person
165 |p[c]&&(e.offsets.popper[f]+=s[f]+g-p[c]);var u=s[f]+s[a]/2-g/2,b=t(e.instance.popper,'margin'+l).replace('px',''),y=u-h(e.offsets.popper)[f]-b;return y=X(V(p[a]-g,y),0),e.arrowElement=i,e.offsets.arrow={},e.offsets.arrow[f]=Math.round(y),e.offsets.arrow[m]='',e},element:'[x-arrow]'},flip:{order:600,enabled:!0,fn:function(e,t){if(W(e.instance.modifiers,'inner'))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var o=w(e.instance.popper,e.instance.reference,t.padding,t.boundariesElement),i=e.placement.split('-')[0],n=L(i),r=e.placement.split('-')[1]||'',p=[];switch(t.behavior){case fe.FLIP:p=[i,n];break;case fe.CLOCKWISE:p=K(i);break;case fe.COUNTERCLOCKWISE:p=K(i,!0);break;default:p=t.behavior;}return p.forEach(function(s,d){if(i!==s||p.length===d+1)return e;i=e.placement.split('-')[0],n=L(i);var a=e.offsets.popper,l=e.offsets.reference,f=_,m='left'===i&&f(a.right)>f(l.left)||'right'===i&&f(a.left)