Adding ember weekly to the emberjs site?
@Hummingbird wrote: One thing that came to my mind during the discussion about the redefinition of slack usage, but didn’t really belong to that topic: How do you guys feel about adding ember weekly...
View ArticleFastBoot whitelist
@rmmpaderes wrote: According to the FastBoot guide here… Because path is built-in, I don’t need to add it to my dependencies. But because redis comes from npm, I need to add it as a dependency. In...
View ArticleEmber CLI, 2018 Edition
@twokul wrote: The Ember CLI team spent the day after EmberConf talking about our priorities for the upcoming year. We meet annually, and this time around we decided to publish the notes from our...
View ArticleWhat is the correct way organize CSS file with Ember.js?
@1c7 wrote: 1. Question What is the correct way organize CSS file with Ember.js? Any general suggestion/advice on CSS when using Ember.js? How to write CSS per-component/ per-templates, avoid name...
View ArticleWill Code Splitting per "Ember Addon" be possible next?
@Daniel_Park wrote: Hi everyone, Our team have been working with Ember about 2 years and we are making healthcare system for cloud. and we are really appreciating to Ember team’s commitment and...
View ArticleExplanation of Ember 3.0 release notes
@miolae wrote: Hi all! Can anybody explain me one thing from EmberJS 3 description? In Ember 3.0 reading a computed property without using get will cause an assertion failure in development. This...
View ArticleAccess ENV object from the console
@paulyoder wrote: I’m trying to debug an issue with a setting value on the ENV object set in the environment.js file but I don’t know how to access the ENV object from the console. I see that EmberENV...
View ArticleWhen is the right time to move to async acceptance tests?
@sam wrote: I am a huge fan of the new “style” of acceptance tests in Ember. This to me reads so much clearer that the andThen pattern: QUnit.test('close temporarily', async function(assert) { await...
View ArticleUse conditional helpers
@belgoros wrote: I tried to use an if helper as follows: {{#if existingDaysIds.includes(weekday.id)}} <p>includes</p> {{/if}} and it failed: emplate Compiler Error (TemplateCompiler) in...
View ArticlePass in a model (array) to helper fails to use findBy
@belgoros wrote: I’m trying to pass in a model containing an array of objects like that: # routes/working-hours.js model() { let monday = EmberObject.create({ id: 1, day: 0, state: 0, opens:...
View Article[Propose][Documentation]: add "CSS" section into Ember.js guide?
@1c7 wrote: What? I propose add a “CSS” section into Ember.js guide ( I can’t do this myself, I am newbie, if I can, I would) Why? Doc didn’t mention much about CSS in Ember.js (or maybe I didn’t...
View Article[Propose][Documentation] write more info about "Addon"
@1c7 wrote: Propose write more info about “Addon” in Ember documentation https://guides.emberjs.com/v3.0.0/addons-and-dependencies/managing-dependencies/ Example Get started (where to find all...
View ArticleHow make breadcrumbs for this route?
@Oleg_Bx wrote: Hi all! Can anybody explain me how make breadcrumbs. I have route like this Router.map(function() { this.route(‘category’, { path: “/:category” }); this.route(‘subcategory’, { path:...
View ArticleWhat constitutes a run loop side effect?
@williamhaley wrote: These articles were a really helpful guide in my understanding about how async side effects in JS impact my application. I think I’ve got a working understanding of the benefits...
View ArticleUse computed property to manage onChange event
@belgoros wrote: I have a select element in every row. I’d like to to implement onChange event so that when I select a specific value in the select drop-down list, the textfield in the same row will...
View ArticleRun app directly in browser
@qwerty wrote: Hi, is it possible to run application directly in browser, without Internet and local server? I’d like to double click in index.html. Thanks in advance for help. Posts: 4 Participants:...
View ArticleHow to disable or hide the Inspect Icon and their Items
@Boo wrote: Hi, When I have tried to hide the Inspect Icon by using the attribute from icon: ‘metadata_global’ to icon: ‘none’. It’s getting hide from the Inspect tab. But still hand cursor symbol is...
View ArticleTransfert data from page to page
@vincenthure wrote: I don’t understand how it work to transfert data from one page to a other! It’s very simple , I want to get information from one page via a formulaire and I want to use this...
View ArticleEmber models table updating by computed filter property
@SowmyaManohar wrote: Hi all, Am new to ember . Trying to filter the data in ember side using ember filter(computed property). I have used ember model table data to display it. The code loads the...
View ArticleReaders' Question - "When will we be able to use decorators in Ember apps?"
@pzuraq wrote: Hello once again to Readers’ Questions, presented by the Ember.js Times. Today we have a question asked by jj: When and how will we be able to use decorators in Ember apps? The short...
View Article