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
1answer
110 views

Fischer Yates shuffle in coffee-script

Assuming that Math.random() produces evenly distributed random numbers between 0 and 1, is this a correct implementation of the Fischer Yates shuffle? I am looking for a very random, even ...
1
vote
2answers
322 views

How do I start a CoffeeScript repl from within a CoffeeScript script?

If I do repl = require 'repl' repl.start {useGlobal: true} It starts a Node repl. How do I start a CoffeeScript repl instead? Thanks
1
vote
1answer
400 views

IE Chrome Frame Full Screen

I have a working implementation of full screen working for Safari, Firefox, and Google Chrome. From what I have read it should work for ie with google chrome frame but when I click the full screen ...
1
vote
1answer
502 views

Programmatically check a checkbox using CoffeeScript

How can I programmatically check a checkbox in Coffeescript ? I know in Javascript, I can use this : myElement.checked = true Can I do something like the following in Coffeescript ? ...
1
vote
2answers
862 views

Rails, CoffeeScript and ERB

So I'm messing around witha few javascript responders for a few actions. So, for instance, def create #code omitted respond_to do |format| if @post.save format.html { redirect_to ...
1
vote
1answer
1k views

Extending Javascript objects with CoffeeScript

I want to add the ability to extend javascript objects by adding a method to the prototype. The method will receive one or more other objects and will add all of the key/values to this. This is what I ...
1
vote
3answers
555 views

How do i build html inside .js.haml file?

I am wondering how to eloquently return the following call in my ajax call? Where i can have break lines etc inside the append function? $(".q#{@question_id}.result_to_response") ...
1
vote
2answers
2k views

rails, getting syntax error with coffee script

i am trying to do an autocomplete feature in rails using the jquery ui library. however i keep getting syntax errors "Syntax Error: reserved word "function" on line ..." this is my lessons.js.coffee ...
1
vote
1answer
2k views

Trouble to get Backbone.Router to work with coffeescript

This is driving me crazy right now. I cannot get a simple router to work... jQuery -> class MyRouter extends Backbone.Router routes: "" :"index" ...
1
vote
3answers
604 views

Coffeescript, nodejs, mongoDB and JasperReports, is it possible?

I just realized a JSF (web javascript application) that connect to mongoDB database and generate a report (PDF) thanks to JasperReports Library. (so with a .java file) Is it possible to do the same ...
1
vote
2answers
619 views

ruby could not come after coffeescript in .js.coffee for ajax response

I am using Rails 3.1, it seems that I could not use Ruby script after a CoffeeScript statement in my create_error.js.coffee view file for the AJAX response. If I do it like this it will work: <% ...
1
vote
1answer
402 views

Merge coffeescript into your node project?

Is setting a bunch of watchers to compile to js still the best approach in development or is there something more elegant? I'm looking for techniques or packages that handle CoffeeScript in ...
1
vote
1answer
4k views

Uncaught TypeError: Cannot call method 'extend' of undefined

I am trying to get a CoffeeScript class to extend a Backbone.Model. I built a brand new rails 3.1 app, created a scaffold of 'Stone', with 3 attributes, and patched a snippet of the Todos.coffee ...
1
vote
5answers
2k views

Coffeescript: Array element matches another array

I have two arrays: array1 = ["hello","two","three"] array2 = ["hello"] I want to check if array2 contains 1 or more array1 words. How can I do that using Coffeescript?
1
vote
1answer
2k views

Backbone Dynamically created 'el' not binding events

Like many other users out here I have a problem with 'el' and events. In my situation I have tested multiple solutions including, using the default el (just '') setting tagName, setting el to a ...
1
vote
2answers
2k views

Cannot POST with Node.js Express MongoDB Mongoose CoffeeScript

Update: I found the solution, look in the bottom of this page... I've got a Node.js, Express, MongoDB, Mongoose project written in CoffeScript and I can create and read data, but I can't update. ...
1
vote
3answers
1k views

Error callback always fired, even when it is successful

There should be a glitch in my syntax, or something I haven't understood, but when I am doing a save method on my model. The error callback is called whatever the outcome of the method. ...
1
vote
2answers
836 views

Accessing document within coffeescript's default wrapper

Coffeescript wraps your code into a wrapper like (function() { /* your code */ }).call(this); Here, this means window. So, to create a public interface I do something like this.publicObject = ...
1
vote
2answers
1k views

jquery: cannot fetch the “value” attribute of a div

Here's a screenshot of my chrome javascript console demonstrating my dilemma. I seriously cannot understand why i can't fetch the "value" attribute. The "class" attribute works just fine, so i ...
1
vote
2answers
1k views

backbone.js save with coffeescript

I have the following method on a backbone view defined in coffeescript: saveObservation: => self = @ observation = new Observation(ParentUid: _questionUid, Status: "N/a", Text: "Change ...
1
vote
1answer
1k views

ReferenceError: CoffeeScript + JsTestDriver + Qunit

Currently I'm looking into TDD with CoffeeScript and JsTestDriver however I'm stuck on a ReferenceError thrown by JsTestDriver. Some info: Using the IntelliJ JsTestDriver plugin Testing via Chrome ...
1
vote
4answers
2k views

How can Coffescript access functions from other assets?

So I have two controllers, hotels and videos. I want the hotels.js.coffee to be able to access functions created in videos.js.coffee but I get a "is not defined" error. I'm new to CoffeeScript so ...
1
vote
1answer
822 views

Another CoffeeScript Error

Hey, I am Just Learning CoffeeScript and I Keep getting Errors. Here is my code: Db = require('./lib/mongodb').Db ObjectID = require('./lib/mongodb').ObjectID Server = ...
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
1answer
26 views

how to get a model by array params from a collection

I have a model like this: model = from: "a@b.com" id: 1 to: [c@d.com] and I have a collection containing these kind of models. The collection needs to filter by from. I know _.where an ...
0
votes
1answer
29 views

How to use inline :confirm option for html helpers with AJAX calls?

I am trying to have an AJAX implementation of record deletion associated with a button. The problem is that ajax:success event doesn't seem to be triggered in such case. I have implemented the ...
0
votes
3answers
79 views

Add a line of code to ALL functions

So I am working in JS a lot, and I am working a lot with events (try to stay as modular as possible). Current I am calling Event.fire('eventName') at the end of every function. I am looking for a way ...
0
votes
1answer
232 views

FineUploader responseJSON doesnt contain success in onComplete callback

After getting the onComplete method to fire, I found that my responseJSON variable does not appear to contain the information I expected it to. Is this me screwing up somewhere(probably), or something ...
0
votes
0answers
30 views

Inserting ruby object id's into coffeecript via html5 hooks

I have a page listing all longsleeve shirts in the database. Each product has an unordered list of thumbnails below it. I'm trying to get the main image to change out when you hover a thumbnail. ...
0
votes
1answer
52 views

coffeescript syntax {var}?

Very simply I am seeing the following syntax using coffeescript in node, that I never saw using coffeescript in the browser. {foo} = app.locals.foo I headed over to js2coffee to see what this ...
0
votes
1answer
87 views

Can Haxe be compiled to Coffeescript?

I'm wondering whether it's possible to compile Haxe to Coffeescript - are there any tools that are available for this? I find Coffeescript's syntax to be much more concise than that of Javascript, so ...
0
votes
2answers
318 views

Javascript: ReferenceError: MyClass is not defined

This is very basic. I try to instantiate a Class defined in an external .js file embedded. The code of the .js is simply this. (function() { var MyClass; MyClass = (function() { function ...
0
votes
1answer
228 views

Jquery-ui datepicker only appears after textbox focused second time

For some reason, when I load the partial and I click the textbox to bring up the datepicker I have to click out of the textbox then click back in the textbox before the datepicker appears. Can anyone ...
0
votes
1answer
128 views

How can I customize this build script with Node?

I have a unique directory structure that I need help making a build script for. Here is the link (slightly different) or directory structure: client /extensions /sandbox /widgets /form ...
0
votes
1answer
185 views

Coffeescript dynamically create/call a function from a list on select box value change

I'm working on adding some image editing tools using the Pixastic library. The idea is that the user can choose an aspect of the image or tool they want from a select box, then the tool will show up ...
0
votes
1answer
58 views

Why doesn't the fat arrow bind to this when I pipe my method definition thru an intermediary function?

I have the following code that declares a method which is advised by an intermediary function before the function result is assigned to a prototype slot. class A somemethod: advise => ...
0
votes
1answer
341 views

Backbone setup with good class separation - App not defined error

It's really easy to find docs on Backbone.js online, but not exactly easy to find tutorials or docs on how to set up Backbone in your project with good class separation. Most tutorials will just dump ...
0
votes
1answer
51 views

How to return settings from an object

i have done something like this: myProject = settings: duration: 500 value: 'aValue' aFunction: -> myElement.fadeOut myProject.settings.duration This is just a sample but my ...
0
votes
1answer
799 views

Application.js.coffee rails

I am trying to do an autocomplete from jQuery, however the code that I have is in CoffeeScript. I am not to sure how to run it on my localhost server. At first I placed it in application.js but that ...
0
votes
1answer
165 views

Any idea not to select the name that is already chosen in token input?

Is there any idea not to select the name that is already chosen in token input? For example In first I select mango when I search for m. Next time again when I search for m Mango should not be ...
0
votes
2answers
242 views

An array of infoWindow in Google maps api

I looked for error and I couldn't find it. Any google maps infoWindow always shows the same information for some reason. Here is a coffeescript code infowindow = new google.maps.InfoWindow() for ...
0
votes
2answers
850 views

Can't get Backbone-relational to work with AMD (RequireJS)

I have the following Backbone router definition in CoffeeScript: // appointments_router.js.coffee define ["app", "appointment"], (App) -> class Snip.Routers.AppointmentsRouter extends ...
0
votes
1answer
88 views

jquery ready function not getting hit inside function

So my jquery ready function isn't getting called. I put a breakpoint at the line and it hits it, but nothing inside the function is hit. Here's the js, which was generated from coffeescript. ...
0
votes
2answers
450 views

Parameters for render method in Backbone View

I'm using this coffeescript code: in a spec file: index = new MeetingIndex(render: false, collection: booking.meetings) index.render(writeTo: '.sandbox') in the view file: render: (options = {}) ...
0
votes
2answers
416 views

observableArray bound table does not update when inside a jQuery UI dialog

I'm trying to create a page with a button which, when clicked, opens a modal dialog box that allows a user to search for products and add selected search results to an order. I've created what I ...
0
votes
2answers
139 views

Delaying ajax call in jquery / coffeescrip

This is some rough javascript/jquery/coffeescript that slides in a DIV on the lower part of the page after a delay. I'm working in a rails, so I'm also hitting an endpoint that increments a view ...
0
votes
2answers
1k views

How to show/hide in rails form with jquery?

I have a rails view (erb) that displays some checkboxes (populated data from seed.rb).. When certain checkboxes are selected i need a div to appear below it that collects more information.. For ...
0
votes
1answer
301 views

How do I fetch a backbone.js model from serialized json from a mvc3 model?

If I had a model like this in my MVC3 application: public class Person { public Guid Id { get; set; } public Name Name { get; set; } public Address Address { get; set; } public ...
0
votes
1answer
282 views

Gem dependency conflict between coffee-rails and rspec-rails

I'm upgrading an app from rails 3.1.1 to rails 3.2. I had to update version of coffee-rails as well as rspec-rails to their latest versions to work with rails 3.2. However, they both seem to be ...
0
votes
2answers
2k views

String is not a function in Coffescript

i just started to learn coffeescript and it's great, but it's tricky.. i try to translate code code that worked in javascript to coffeescript and i fail alot, in a link i posted 3 pastes js.js is ...