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
votes
0answers
131 views

use Coffeescript to take user entry and pass it to a method

I have a text box with the id = note. I have the URL ID from the page that will represent the property either PairID or TagID, in this case TagID. I want to take these and pass them to a method that ...
0
votes
1answer
31 views

Emit events from a coffeescript class

I want to emit events from a coffeescript class, similar how Backbone.View does. class Countdown extends Backbone.View countdown = new Countdown countdown.on "complete", -> something() So ...
1
vote
1answer
51 views

Best way to keep the values of two variables in sync in JavaScript

So I have two variables. One is ammo and the other is ammoAvailable. When the user left-clicks, ammo is reduced by 1, but can never go past 0. When the user right-clicks, ammoAvailable is reduced ...
0
votes
0answers
63 views

is there a Coffeescript for PHP? [closed]

CoffeeScript has made me love Javascript again. It (CoffeeScript) is my favorite language now to program in. Maybe even better than ruby. Is there a CoffeeScript type replacement for PHP? Seems ...
0
votes
1answer
19 views

Backbone + r.js. Making two different builds on one app on CoffeeScript

I have an issue to make two different builds on my app directory. I am using Backbone+CoffeeScript, so it's a lot of staff in the folders. I used build.js to generate one big result.js and load it on ...
2
votes
2answers
71 views

In a snake game, how can a move a snake that has distinct pieces?

I've looked at some examples that build a snake game in javascript and they seem to move the snake with this algorithm: place a piece where you're going to be next tick remove the last piece from ...
0
votes
0answers
46 views

jQuery callback not firing after rails ajax request

Controller def create @post = Post.new(params[:post]) respond_to do |format| if @post.save format.js { render partial: 'post', layout: false, locals: {post: @post}} end end View ...
-1
votes
1answer
39 views

Classes in CoffeeScript

I have some code on CoffeeScript (run under PhantomJS): class Loadtime constructor: -> @page = require('webpage').create() check: (uri) -> time = Date.now() @page.open uri, ...
-4
votes
0answers
45 views

what is the jquery equivalent for xhr [closed]

What is the equivalent for the XHR in jquery formData = new FormData() xhr = new XMLHttpRequest() formData.append('file',file) xhr.addEventListener('error',onError,false) ...
1
vote
2answers
41 views

Swapping array elements in coffeescript

I'm learning coffeescript and wrote the following function to reverse a given word: reverse = (word) -> if word.length is 0 return "empty string" if word.length is 1 return word left ...
0
votes
2answers
49 views

Find class which invoked function call in CoffeeScript

I have two classes and a global function. In the global function, I would like to to determine which class called it. Here is what the code looks like in CofffeeScript window.pet = ()-> alert ...
1
vote
2answers
56 views

CoffeeScript - how to avoid unnecessary returns?

Here's my CoffeeScript code: http.createServer((req, res) -> if req.method is "POST" req.on "data", (data) -> queryData += data req.on "end", -> _.process ...
0
votes
0answers
24 views

How do apply a page specific jquery to multiple divs generated by rails?

I have written my view like this <% @regions.each do |region| %> <div class="row"> <div class="region"> <aside class="span4"> <section> <h1> ...
0
votes
2answers
141 views

global helper is overriding local context in meteor handlebars template

In my meteor app I have some coffescript making a global helper: Handlebars.registerHelper "title",-> Session.get("title") and a piece of template: {{#each edited}} <li><a ...
0
votes
0answers
147 views

Why am I getting errors running the coffee command in cygwin?

I followed the CoffeeScript installation guide by installing Node.js with the node-v0.10.9-x64.msi installer. I then started up a cygwin console and cd'd into the directory with my .coffee file. If ...
1
vote
1answer
61 views

Trouble installing coffee script on my Macbook

I tried install coffee-script through the following command: npm -g install coffee-script Then I got these errors, npm http GET https://registry.npmjs.org/coffee-script npm http 200 ...
0
votes
1answer
51 views

Passing JSON to Backbone.Marionette View's Template

So I'm trying to implement some handlebar directives to one of my templates, but I'm kind of lost on how to pass the JSON to the template so that it can make use of it in the directive. Currently I ...
0
votes
0answers
20 views

canvas element not appear on dom

i'm trying to create dynamicaly a canvas element in coffeescript, but the element is not appearing in the dom. When i'm writing divelement=document.createElement("div") ...
0
votes
1answer
19 views

Backbone events being fired without trigger

So I have a strange issue where my backbone events are getting fired even though they haven't been triggered yet. Essentially I'm making a note editor application. In the note itself, a user can press ...
0
votes
2answers
42 views

Compile CoffeeScript CommonJS modules on the fly

I have a module: # a.coffee: @f = -> console.info 'Hell, oh, world!' # Note that exports == this and another module from which I require it: # b.coffee: a = require './a' a.f() I want to run ...
0
votes
0answers
27 views

Unable to get started with Coffeescript on windows

I am trying to get coffeescript installed on a windows machine, but am unable to run the coffee command. Here's what I am getting on trying coffee -v on the console: Program 'coffee' failed to ...
0
votes
1answer
25 views

Python CoffeeScript.compile doesn't work within SublimeText2

I'm trying to use Python-CoffeeScript to compile a bunch of CoffeeScript files into javascript for use in a Flask web app. But for now let's just talk about the trivial case. This issue is that I can ...
2
votes
1answer
24 views

finding the line number of a coffescript error in rails

I am trying to find a good way to debug my coffeescript in Rails. My configuration settings for assets are : # Do not compress assets config.assets.compress = false # Expands the lines which load ...
0
votes
1answer
52 views

uncaught exception: Template undefined not found, ReferenceError: Backbone is not defined

I am trying to follow along with this series: http://www.backbonerails.com/series/engineering_single_page_apps I am on episode 5, at around the 48 min mark. When I refresh the page in my browser, I ...
1
vote
1answer
35 views

CoffeeScript override base types, change value

I have a function that override primary types in CoffeeScript, but this function returnin value and I want to change itself. String::replaceAll = (what, to) -> regexPattern = new RegExp(what, ...
1
vote
0answers
34 views

Testing click event with Konacha/Poltergeist (and Rails)

I have Konacha running with the Poltergeist driver in my config/initializers/konacha.rb file. I've made sure that I set config.driver :poltergeist in that file. I'm having trouble getting Poltergeist ...
1
vote
2answers
49 views

Why is the difference between the compiled javascript while using question mark operator [duplicate]

Without @ alert("Even Number") if even? Corresponding Javascript if (typeof even !== "undefined" && even !== null) { alert("Even Number"); } With @ alert("Even Number") if @even? ...
0
votes
1answer
24 views

Mocha non-global references

Let's say I have a structure like so: /Users/me/Desktop... app/ node_modules/ subdir/ test/ mytest.coffee If I cd /Users/me/Desktop/app/subdir, then run mocha tests ...
2
votes
2answers
242 views

Can I use Typescript classes as AngularJS controllers using the new 'controller as' syntax

I'm working on a web app using AngularJS and Typescript and I'm trying to find the best way to take advantage of Typescript when it comes to defining controllers. Intuitively a controller would just ...
0
votes
0answers
44 views

Template undefined not found

Hi I am working on a tutorial, and extending a question I had here - backbone + rails TypeError: List.Header is not a constructor I fixed the problem that I originally had in the old question, ...
1
vote
1answer
34 views

Coffeescript rails select one of two models

I have two models in ruby, @photos = Photo.all @comments = Comment.all @objects = @photos + @comments I have in my html a button id"only-photo" and a button "only-comments", if i click on the first ...
2
votes
0answers
38 views

backbone + rails TypeError: List.Header is not a constructor

I am trying to follow along with the tutorial I purchased from this site: http://www.backbonerails.com/ I am following along with the 5th episode of the series, "Getting Up and Running - Part 1". At ...
0
votes
3answers
41 views

Need help implementing the sequencing of jquery instructions

The problem: I have a simple function and I need the instructions within it to take place one at a time. Here it is: showImages = (current_time, exercise) -> $('#slideshow ...
0
votes
0answers
55 views

Cannot reference coffee after installing CoffeeScript on Mac OS X 10.8.3

When I enter coffee --help in my home folder, I get the response -bash: coffee: command not found Here are the steps that I have taken to try and get this working: I have successfully installed ...
0
votes
1answer
31 views

Barista is not compiling Coffeescript files upon change

Rails 3.0.20 Barista 1.3.0 coffee-script 2.2.0 If I make changes to a file in app/coffescripts, I do not see the appropriate file in public/javascripts get updated. If the file doesn't exist, it is ...
1
vote
0answers
120 views

Trouble installing coffee-script with npm

Here is my console output after running sudo npm install -g coffee-script Joshuas-MacBook-Pro-2:~ jwalsh$ sudo npm install -g coffee-script npm http GET https://registry.npmjs.org/coffee-script npm ...
0
votes
1answer
29 views

Why is coffeescript interpreter rejecting 'for' token?

The coffeescript interpreter at coffeescript.org doesn't seem to like the 'for' keyword in any context in which I try to use it, reporting "unexpected terminator" when the 'r' is typed. Anyone have ...
2
votes
1answer
46 views

Dependency Injection with javascript / coffeescript to aid testability

I'm implementing some testing with Jasmine in my web app. I'm using Coffeescript to write my models, services and view models. class MyViewModel constructor: ( @options ) -> @alert = new ...
0
votes
1answer
33 views

how to initiate a class from variable CoffeScript

How would one initiate a class from a variable in CoffeScript? in another words: className = 'Domain' domain = new className() should.exist(domain) 'Domain'.should.equal(domain.constructor.name) ...
0
votes
0answers
58 views

Jquery function not wating for other to finish. I think

I need to build a multimedia player with images coming at specific times and some of them showing in a loop pattern. I could not find a library that did it the way my client wants it to work so I'm ...
0
votes
0answers
47 views

Different layouts

I try to use different layout for my app. But I have a problem. For example. I want to have 2 layouts: Blank and Main. Blank is for login, registration page etc... Main for all other pages. When I try ...
0
votes
2answers
58 views

How to get 'id' from an open bootstrap modal?

I have a modal with id="<%= p.id %>" (the id of the post that is in the modal). I want to do something with the content of the modal when it is open (and I need to do this in the.js file). But ...
2
votes
1answer
81 views

Grunt: Watch multiple files, Compile only Changed

I'm new to Grunt, and so far I'm enjoying it very much. I want Grunt to compile only the changed files when running grunt watch In my Grunfile.coffee I currently have (relevant parts). Note: ...
0
votes
0answers
12 views

How do I watch for errors with sockets.io in transmissions?

say I have socket.emit 'sendMessage', data How do I check for if it fails, is there an asynchronous callback like error or something? I've checked on the documentation and was unable to find any ...
-1
votes
1answer
38 views

CoffeeScript: Error When Instantiating Object In Constructor [closed]

I'm getting a weird error when trying to instantiate an object inside of another object's constructor method. EDIT 3 For instance (with pictures): Here's the javascript Here's the compiled ...
-1
votes
1answer
32 views

how to reference class name of extended class from the base class (this.constractor.name) in CoffeeScript or JavaScript

i have simple inheritance. Once initiated, i can find out what class it is by looking up the constructor name: someClass = new SomeClass() console.log someClass.constructor.name //SomeClass base = ...
1
vote
1answer
24 views

Make coffeescript to compile files but not to interpret it

How can i make coffee command to compile javascript files but not to interpret them. This is the command i am currently using in terminal. coffee --watch js/ It is working fine for me. It is ...
2
votes
2answers
98 views

What is the easiest way to disable/enable buttons and links (jquery + bootstrap)

Its been asked and answered a thousand times. It seems like it should be very simple, but before you go marking this question as a duplicate, I am asking and answering this because I have not been ...
1
vote
1answer
39 views

Grunt coffee with node requires() support

Have seen a couple of solutions re: being able to include .coffee files within a coffee file directly via nodejs: For example, given jform.coffee: jForm = { foo: () -> console.log('blah') } ...
1
vote
1answer
70 views

Node.js callback called twice

I'm using the sendgrid library for node.js. Currently there is a callback that it's getting fired twice. @invite = (email, agencyId, callback) -> (app.get 'agencies').findOne {_id: ...

1 2 3 4 5 72