Deploy ember project on server
@Alessio_Varalta wrote: Hi i have a ember application in locale that use mirage. My problem is how i deploy the application on the server? I have installed apache2 and clone my appplication on the...
View ArticleI can't create a new project?
@thuncercat wrote: version: 2.3.0-beta.2 node: 4.2.6 npm: 2.14.10 os: win32 x64 I really want to work with emberjs but when i run the command ember new t-app on the Node.js command prompt it hangs at...
View ArticleComponents organization and structure
@alexmngn wrote: Hi there! As my project is getting bigger and bigger, my components folder starts to be a mess with 100+ components, a lot of things in there. I was wondering how do you organize your...
View ArticleWhich is better? Nested outlets or Named outltes
@Sarath wrote: Which one performs better? Posts: 2 Participants: 2 Read full topic
View ArticleGenerating thumbnails with Brocolli.js
@FelixAkk wrote: A grid of high-res images puts a high toll on load times and bandwidth. I'm trying to figure out if it's possible to set up Brocolli.js to generate thumbnails, but I'm having a hard...
View ArticleDeleting from Mirage - TypeError: Cannot read property '_internalModel' of null
@rssfrncs wrote: https://gyazo.com/8aee3f46d1908ba687b6f3b103ffb039 Posts: 1 Participants: 1 Read full topic
View ArticleDynamically adding to a contextual component hash
@timothythehuman wrote: I'm feeling enamored with the new contextual components, and there's something I'd like to try to do, but I'm not sure it's possible. Basically, you can hard-code in a...
View ArticleHow to get mouse x and y position in ember?
@amitkumarchauhan wrote: I have a div and I have registered action helper showTip inside the action hash showTip I want to get the mouse x and y position. How to get it. Please help. actions : {...
View ArticleTagless Components Performance
@rmmpaderes wrote: I know that when you use a tagless component you can't assign classes, etc. I'm curious though, are there any performance issues with tagless component vs a tagged component? Is it...
View ArticleFunction declaration naming conventions
@shaunb wrote: I'm curious about these two ways of declaring functions in ember: export default Ember.Component.extend({ didInsertElement() { ... }, didInsertElement: function() { ... } }); Both seem...
View ArticleHow can I speedup ember-cli project creation
@DevGuy wrote: I timed the creation of a project using ember-cli and it took 5.48 min, this is really painful to sit through. Is there anything that can be done to substantially speed up this time?...
View ArticleSort by unsaved property of model
@SpaceMaster wrote: Tell me please, how can i sort model by unsaved prop. I have a User model, and she uses rest api adapter, but i set status online through websockets, and sort is not refresh until...
View ArticleHow to use basic FOR loop in Ember?
@mukeshsingh3 wrote: I'm very new for Ember. Can anyone help me to write loops, like for(i=0; i<10; i++) in Ember templates. I've found only {{#each}} for loops in templates. I've two values and I...
View ArticleShare application code between Node and Ember 2.x
@kayo wrote: I have an app which uses a Node backend and Ember 2.3 frontend - So there is common code which needs to be shared between Node and Ember. I think this question is related to Best practice...
View ArticlePossible to configure SSL/TLS for discuss.emberjs.com?
@workmanw wrote: I just realized that SSL/TLS is not supported for discuss.emberjs.com. It seems even login credentials are sent in clear text over the wire (see screenshot below). Would it be at all...
View ArticleEmber-cli is very hard to get it right. Many errors [Solved]
@v3ss0n wrote: I am trying to get emberjs working for 4 hrs but not helping yet. I wanted to use emberjs 2.3.0. i did npm install ember-cli@beta ember new asdf cd asdf ember server gives :...
View ArticlePods: Do you have a solution or workaround to refresh styles on change?
@alexmngn wrote: Hi there, I'm experimenting the use of pods for my components and I love the structure. Although, Ember-CLI doesn't seem to like the style.scss file in my component folder, every time...
View ArticleEmber.computed.sum
@canop wrote: Let's have models: Model: basket export default DS.Model.extend({ fruits: DS.hasMany('fruit', { async: true }), fruitCountArray: Ember.computed.mapBy('fruits', 'count'), totalFruitCount:...
View ArticleHow to delete object data from mirage server, which is using a faker factory...
@anaspm wrote: in my project I am using mirage in backend to store data i created a faker factory using it , since i dont know how i can fetch data in mirage directly. what all changes i need to do...
View ArticleOrchestration way
@Swizz540 wrote: Hi, I am on the way to design an app who require to change route periodically.In fact. When the "game" is started, if no action was called, after 30 seconds, the route must change to...
View Article