Understanding AngularJS Provider
AngularJS has the feature to create provider which act like a factory to provide data to the application. A provider can be defined using provider() function. A provider has to implement $get() method to be used. In this demo, "We will create a fruit name provider which will injected in application configuration and used by […]
Indtroducing Chrome Development Editor
Chrome provides a very light weight development editor.This editor is now in beta version. This editor can be downloaded from below URL. https://chrome.google.com/webstore/detail/chrome-dev-editor-develop In this Demo, “We will explore this Chrome Developer Editor“. Below screenshot shows creating new project popup window. Below screenshot shows the supported project types by this […]
Resolving Polymer ReferenceError Platform is not defined
While coding for Polymer JavaScript library for web component you will face an exception “ReferenceError Platform is not defined”, though all the library are included properly. In this Demo, “We will see How it occurs and its solution “. Below screen shot shows the chrome inspect of loaded HTML of a sample polymer code.You can […]
Use Of Polymer Core Selector Element
Polymer provides core-selector element for element selection. In this Demo, “We will learn the use of core selector element“. In the demo we have maintained a list of student detail in JSON. When user click on any student it is selected and color changes to RED/GREEN base on the mark.If the student score is more […]