CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.

learn more… | top users | synonyms (1)

1
vote
3answers
2k views

Rails 3.2.3 ExecJS::RuntimeError

I'm getting ExecJS::RuntimeError when i try to start Rails server and the server log gives me the following: ActionView::Template::Error (delete operand may not be argument or var (in ...
0
votes
1answer
19 views

fullcalendar process checkbox in a modal

I'm using Fullcalendar in a Rails app. I have a modal for entering data about the event. One field is an overtime boolean. HTML: <input type="checkbox" name="overtime" id="overtime" ...
0
votes
3answers
2k views

Trouble installing npm

I got a clean install on my mac book pro with mountain lion. Then have installed nodejs with homebrew i.e. brew install nodejs, but now I cant get npm to install. eg. $ node -v v0.8.6 $ ...
0
votes
2answers
24 views

How to convert a function to an async.each function

I've a small problem with a function in a class of my nodejs/express server. I have the following function : @resolveServers = (url, servers, resolved) -> result = [] treatServer(url, server, ...
1
vote
2answers
24 views

MongoDB query from node.js (express-coffeescript-mongodb)

I'm new to database queries with noSQL databases and have a quick question. Essentially I want to retrieve the 'name' of all fields that have 'publishedImage' set to 'true'. I would like to store ...
-5
votes
0answers
27 views

What are some empirical technical reasons not to use CoffeeScript? [closed]

Context: I have been doing some web development as of lately with Node.js and I am currently deciding if to focus on JavaScript or CoffeeScript. I went through the same debacle on JavaScript or jQuery ...
0
votes
2answers
73 views

Does yuidoc work with coffeescript?

Has anyone ever setup yuidoc to work with coffeescript? Here's my yuidoc.json file: { "name": "App", "description": "App", "version": "1", "url": "http://example.com", "options": { ...
1
vote
0answers
40 views

How do I clear out an array's contents and replace with new contents of nested collection?

I have a Project model that has a nested collection of ProjectSlides. The project slides are images that I would like (to iterate over) to show which are specific to the particular project that was ...
0
votes
1answer
23 views

correct way to exclude certain characters from crypto.randomBytes

i have the following code, based on http://nodejs.org/docs/v0.6.9/api/crypto.html#randomBytes crypto.randomBytes 32, (ex, buf) -> user.tokenString = buf.toString("hex") user.tokenExpires = ...
0
votes
0answers
11 views

Grunt-contrib-watch error when compiling less files

Not sure why I keep getting these errors when running this watch task. GRUNT WATCH TASK # Watch task watch: options: nospawn: true livereload: true server_coffee: files: ...
0
votes
1answer
38 views

Sinon.js: Correct way to stub and analyze the return

I am writing a node app using coffeescript and doing some TDD using mocha.js. Please can someone point me correct way to write the test. What I want to do: Fake response of 'ra.do_get'and then call ...
0
votes
1answer
18 views

dynamically adding members to coffee-script object

So currently I have an object which looks like this module.exports = class Book extends events.EventEmitter constructor: -> @books = a: new small_book('aaa') ...
0
votes
1answer
25 views

jQuery cycle.all.js first slide timeout

I'm using the cycle.all.js jQuery plugin (http://jquery.malsup.com/cycle/). Right now it's working fine, but I need the first image to have a shorter timeout than all the rest. So when the user first ...
0
votes
1answer
17 views

TypeError: object is not a function - node.js / express

I get the following Type Error when I run the node.js application /Users/khinester/Sandboxes/zeitgeist/Blade/server.js:5 application = require("./.app/")(); ^ ...
0
votes
2answers
28 views

How to refactor this array comparison with underscore.js?

Can this code be refactored in a more functional/underscore style, mainly the part that checks for the presence of addedEvents in actualEvents? describe 'when removing', -> it 'should remove ...
0
votes
2answers
99 views

CoffeeScript class undefined in script loaded using $.getScript

I am using CoffeeScript classes in conjunction with a jQuery and am loading another HTML page via ajax that, in turn, references another javascript but am having trouble getting the ajax loaded page ...
1
vote
0answers
33 views

Coffeescript running a second function before the first has finished executing

My code is as follows. I would expect the code inside configureMission() to finish running before running mapSurface. This does not appear to be happening. missionCommands = "" # you don't have a ...
0
votes
1answer
21 views

Does Moovweb support coffeescript?

I've been looking into the moovweb platform lately, and I was wondering how or if Moovweb works with CoffeeScript. Can anyone provide an example of some code?
0
votes
2answers
895 views

Coffeescript generating js with jquery ajax call outside document ready function

Can anyone tell me why this coffee script: $ -> $('#btnLogin').live 'click', -> $.ajax url: 'user/login' type: 'POST' data: 'Username=' + $('#username').val() + ...
0
votes
3answers
2k views

Why don't partials work in ExpressJS?

myModule.search location, item, (err, data) -> if err? res.end 'Error!' else res.write 'got here' partial 'partials/table', {items: data, layout: false} res.end() ...
2
votes
1answer
95 views

ExecJS coffee script not showing line numbers for compile errors (Rails asset pipeline)

In one of my Rails apps, ExecJS is not showing line numbers for coffeescript compilation errors. My compile error message will look like this: ExecJS::RuntimeError in Referrals#new Showing ...
0
votes
1answer
21 views

Persona automatically logs me out right after login

Well, this is my persona setup: $ -> $('#login-btn').click (e) -> e.preventDefault() navigator.id.request() false $('#logout-btn').click (e) -> ...
0
votes
2answers
37 views

Coffeescript retry loop doesn't work

I have a loop like this and it should return and exit the loop if the ajax request was successful, also it should only retry 10 times, but it just iterates the loop 10 times and stops then when the ...
0
votes
1answer
66 views

how to dry up these tests with jasmine.js

I have a lot of tests like the following : it "Should call togglePadding if df-padding is checked", -> spyOn(App.columnsSetupBuildingBlockController.content, 'togglePadding') ...
0
votes
1answer
22 views

coffeescript jQuery - how to refactor this (noob) approach?

after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
0
votes
3answers
43 views

Jquery Finding the closest link?

I want to be able to get the href from this type of code: <tbody> <tr class="odd"> <td class=" sorting_1"> <a href="aURL">The Link Text</a> </td> ...
0
votes
0answers
11 views

Connect.js static middleware and coffeescript

I am trying to learn to use the Connect.js static middleware, but all the examples I find use the static command as either a function, or a getter, some use a method called use(), while others don't. ...
1
vote
0answers
37 views

Emberjs view binding for Google maps markers

I have a /companies route set up which uses my Company model to retrieve companies. I also have a Map view which I'm trying to display my companies on. I can't seem to find a way to get the list of ...
1
vote
1answer
34 views

Is there a way to get access to the Ember model within a nested view?

I'm trying to get access to the model for an ember model object that I'm currently editing. I'm rendering a view: {{view App.RemarkTextField valueBinding="content"}} And here's the view: ...
0
votes
0answers
43 views

Firebase createUser authentication error

So I'm having the weirdest problem with the firebase simple authentication... When I visit localhost/#register, fill out the form, then submit it, I get a SERVER_ERROR in the authClient.createUser() ...
0
votes
0answers
15 views

Problems with Coda 2/CoffeeScript plugin

Regarding plugin for Coda 2. I am having some problems making it work. I have written a small test program in CoffeeScript, but when i try to run and/or compile I get the following error message: ...
3
votes
2answers
2k views

Can I use Coffeescript in client side too?

Is there any way to use CoffeeScript in client side?
1
vote
1answer
64 views

How do I prevent these unwanted returns in my if/else block?

Update: My problem was caused by two functions returning and not just one. The callback function in the $.each loop was generating the returns in the if/else block. Even though I link it later in the ...
1
vote
2answers
22 views

Coffeescript - How to call method of parent class

class Foo foo: () -> console.log("foo method Called") class Bar extends Foo constructor: () -> console.log("Bar created") bar: () -> console.log("bar method called") ...
0
votes
0answers
14 views

My coffeescript for jquery-ui-rails is not working

I am using jquery-ui-rails gem package for datepicker in my rails. but it isn't working. Here is my Gemfile group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> ...
0
votes
2answers
61 views

How to send result of a function after the loop is finished?

In a Node/Express server in CoffeeScript, I have the following function : @resolveServers = (url, servers, answer) -> result = [] treatServer(url, server, (treatAnswer) -> ...
0
votes
2answers
583 views

backbone.js having trouble with fetch() on a collection

Warning: Code is in Coffeescript. I hope that's ok. I have a model, Song, a collection Songs, and a view SongsView. Here it is: SONG_TEMPLATE = ''' <table> {{#if songs.length }} ...
1
vote
1answer
36 views

Prepend absolute URL path in Backbone.sync for an API on another server

My Backbone app communicates with an API that exists on another server. Backbone.sync will generate relative URLs by default. The simplest way to prepend the absolute server path would be something ...
94
votes
14answers
23k views

CoffeeScript on Windows?

How can I try CoffeeScript on Windows? The installation instructions are only for *nix: http://jashkenas.github.com/coffee-script/#installation EDIT: Since I asked this a while ago, many new ...
7
votes
2answers
102 views
1
vote
1answer
14 views

Jasmine .andCallFake not triggering for function call with spineJs

I am using jasmine to test my front end, and have a spy set up to watch for the edit function to be called within a controller. The callback takes a message and either brings up the edit view or ...
0
votes
1answer
19 views

Display clicked image in different div Ruby on Rails

I have some images. When an image is clicked I want to get that image displayed in a different div. Been struggling with how to solve this. This is what I've got so far. <% @user.images.each do ...
0
votes
1answer
16 views

Coffeescript-Javascript correlation

I am trying to understand how private methods are created using coffeescript. Following is an example code class builders constructor: -> // private method call = => ...
2
votes
2answers
170 views

Bootstrapping a Backbone application

I have seen a couple of ways on how to do this, but I can never figure out which is the 'correct' way. Jeffrey Way from NetTuts+ and Addy Osmani instantiate a 'main' application view in order to ...
0
votes
1answer
15 views

issues listening to events with backbone

I am trying to listen for when my view's "attachmentClicked" function is called in another object. Here is the class which originally calls the event: class AttachmentView extends ...
0
votes
0answers
48 views

Uncaught TypeError: Object [object Object] has no method 'call' backbone.js

This is happening after I do an edit to a model. It sends the request (I have that turned on in chrome and I see it log externally) but when it gets a response, that error pops up. Here's my model: ...
1
vote
2answers
30 views

Using Backbone.js View remove() method with jQuery's fadeOut()

I believe that my title almost explains what I wish to achieve, I have a Backbone View with an event that removes itself via view.remove() More precisely: class Project.Views.MemberView extends ...
0
votes
2answers
32 views

Create action is called by every button (not only “submit” one)

I have a form for transaction, with some text and select fields. There is a text-field date, where I use jQuery.ui.datepicker. I've hidden text-field and use buttons instead ("today", "yesterday", and ...
2
votes
1answer
36 views

Coffeescript class object in array

I have some class with some functions and properties exports.textareaWidget = class textareaWidget extends Widget name = null getHtml: -> this.generateHtml(widgetHtml) Then I create ...
1
vote
1answer
11 views

How to stub a super() call with Sinon

I am using Coffeescript and I'm testing using Sinon.js. When testing a method that invokes the method it overwrites, how can I stub the call to super()? E.g., the method I want to test (a backbone.js ...

1 2 3 4 5 69