Posts for "ember.js"
EmberCLI - Include external library and its resources
Ruslan PrytulaMarch 24, 2016 7:55 PM
Ember CLI: How to add external library and related resources to your app. Materialize CSS is used an example to show how to add all Roboto fonts to the app. Read how broccoli-funnel helps to tackle the problem.
Ember Way to Format Data Using Dynamic CPs, Services and Helpers
Oleksii RudenkoOctober 27, 2015 5:26 PM
Complete tutorial on implementing formatting routines and connecting them to various parts of your app through computed properties, services and helpers.
Adding Analytics to Your Ember Apps Once and for all Using Segment's Analytics.js
Oleksii RudenkoSeptember 30, 2015 9:47 PM
This tutorial shows how to integrate your Ember or ember-cli app with Analytics.js by Segment - an open-source adapter for various analytics platforms
Router service for Ember Apps
Oleksii RudenkoSeptember 30, 2015 9:47 PM
An example of how to prepare your Ember App for the soon-coming(hopefully) Router service
How to render an HTMLBars template to a string in Ember 2.0?
Oleksii RudenkoAugust 13, 2015 8:42 PM
In this blog post, I show how to render a HTMLBars template to a string in Ember 2.0
Ember.js: Process Click on Link-To Helper if No Transition Happens
Oleksii RudenkoJuly 3, 2015 1:15 AM
For 1 year of development with Ember I never needed something like this until yesterday. The task was to attach a handler to the `link-to` helper that would run when there is no transition fired by the helper itself (e.g. when the link-to helper points to the current route). In particular, I needed to scroll to the top of the window when no transition happens
Using HTML 5 Application Cache for Single Page Applications
Oleksii RudenkoApril 1, 2015 10:42 PM
About common pitfalls when working with HTML5 Application cache. Recently I added the HTML 5 application cache to an Ember app. Actually, the app already used the application cache but it didn't work well. For example, the new releases didn't always make it to the users and the app broke because the client part of it was stale and the server part was new.
Ember.js: How to Hide Views Using IsVisible Property
Oleksii RudenkoFebruary 3, 2015 8:57 PM
How to control display of items using Ember.js View's isVisible property
Ember.js: My Observers Do Not Work or RTFM
Oleksii RudenkoDecember 14, 2014 1:34 PM
The article is about Ember.js observers and how to make them fire on object initialization
Ember.js and the Web Speech API: Example of a Speech Recognition Component
Oleksii RudenkoDecember 7, 2014 5:00 PM
The article describes the Web Speech API (speech synthesis and speech recognition) using a simple Ember.js component as an example. The component gets the voice input and sends it to your Ember.js app. Also it can speak back what the API has recognized
Ember.JS: Using The Unbound Helper
Oleksii RudenkoNovember 30, 2014 1:00 PM
Unbound helpers in Ember.js allow product output that does not change of the input data changes. These helpers may improve performance and this article describes some features of the unbound helpers in Ember.js
Experiments: Using Image Sprites and IMG Tags to Display a Set of Images
Oleksii RudenkoNovember 18, 2014 12:14 AM
The article discusses the image sprites to be used with the IMG tag for the content images. The generation of the sprites happens on the fly on the nodejs server