Javascript 51
Understanding Mozilla Brick Web Component Framework
Mozilla ‘BRICKS‘ is a Web Component Framework For Mobile Devices. This Framework is based on X-TAG. X-TAG is based on the POLYMER Project for W3C Web Component PolyFils. For more details on X-Tag, you can use the below link:- http://www.x-tags.org/ […]
Understanding AngularJS Directve Properties Detail
RESTRICT— This property controls the use of the custom directive. — A Directive in AngularJS can be used as Attribute, Element, Class,Comment.It can have the value of any combination of A|E|C|M. Example, restrict : “AC” designates the custom directive can only be used as an attribute or class. —The default value of restrict […]
Getting Started With Deployd App
DEPLOYD is the open source tool for creating for building REST API for the JSON Data. In this Demo, “We will create a REST API on Student Data“. Download Link for Deployd :- http://www.deployd.com/download.html After Installation of the downloaded Deployd package follow the below steps to create REST API for Student […]
Creating A Basic Custom Directive In AngularJS
Directives are the base of AngularJS library. You have seen ng-app, ng-controller, ng-repeat keywords used in AngularJS templates and partials.In my previous posts I have used these repeatedly.These are nothing other than inbuilt directive from AngularJS library. In this Demo, "We will create a custom directive for students .This directive will append two string PASS […]