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.
0
votes
1answer
64 views
Using Javascript in Ruby on Rails
I have a drop-down list where you can select a person.
<%= select_tag "person", options_from_collection_for_select(Person.all, :id, :name, 1) %>
When a person is selected I want to display ...
2
votes
1answer
215 views
MeteorJS and Coffeescript
I had /clients/client.js , /server/server.js and /model.js
In model.js I had: "Lists = new Meteor.Collection("lists");
In client/server I had used this collection. All works fine.
After adding ...
0
votes
2answers
29 views
How do I write jQuery(function($) {…} in CoffeeScript
In this tutorial it includes the code:
jQuery(function($) {
// do stuff ...
});
How do I write this in CoffeeScript? jQuery($) -> isn't right, but I can't work out what is.
0
votes
2answers
46 views
Why do we need to use unless and “?” together instead of if alone
what is the need for using unless and "?" together when you can use if like in this case
unless person.present?
is equivalent to
if person.present
0
votes
1answer
58 views
BackboneJS, MarionetteJS - Trying to display layout + regions
I've got the following code
$ ->
class MainLayout extends Marionette.Layout
template: Handlebars.compile $("#main_layout_hb").html()
regions:
header : "#header"
options ...
0
votes
1answer
90 views
Node.js server/client module confusion, EventEmitter woes
I'm trying to write a library which can be used in Node.js or on the client-side.
I'm running into two issues:
I can't seem to export it correctly. I'm using this doc. MyClass = exports? and ...
0
votes
1answer
253 views
Angularjs data binding with a data attribute object
I have some json attached to a data attribute on a page. The json data is used to build a table in angularjs.
I'm using coffeescript and haml.
app = angular.module("myApp", [])
...
2
votes
2answers
83 views
Nested views and events in backbone
So I have two views. One 'parent' view that is bound to a collection and a number of sub-views that are bound to individual models in the collection.
class ResultTable extends Backbone.View
...
2
votes
1answer
44 views
Is it possible to collect results from callbacks through coffeescript comprehensions?
Suppose I have array of objects, each have some asynchronous readValue function, which accepts callback as its parameter, which will be fired when value is available for this object.
My goal is to ...
1
vote
1answer
45 views
Coffeescript objects, jquery callback and variable scope conflicts and confusion
Trying to find out best approach to have this work:
class Person
constructor: (@el) ->
@el = $(el)
this.bind()
bind: ->
@el.find('.something').on 'click', ->
...
0
votes
3answers
74 views
Nesting methods in coffee script
I am currently trying to make something in coffee script that requires nesting methods. I want something like this.
class test
constructor: (one, two, three) ->
#do something with one ...
1
vote
2answers
61 views
BackboneJS MarionetteJS - waiting until collection has finished fetching
I have a BackboneJS & MarionetteJS app
class MyApp extends Marionette.Application
app = new MyApp
app.addRegions
tag_container :"#tag_container"
item_container :"#item_container"
...
0
votes
1answer
43 views
Is it possible to block the parent thread in Node JS?
I am attempting to fix up some third party NodeJS (hubot-scripts if anyone cares). The idea here is that we reach out to the Teamcity REST API once for every build returned from a previous call and ...
1
vote
2answers
50 views
How to automatically upload compiled coffeescript files in Intellij IDEA?
I use automatic deploy through FTP. Everything worked well until I started to use coffeescript and its filewatcher feature which recompiles my .coffee file into .js file on every change.
Problem is ...
0
votes
1answer
43 views
Proper way to perform AJAX call in Rails
I am currently performing AJAX in "oldschool php way":
/home/index.html
<%= button_to 'Get message', :id => 'get_message' %>
<div id="message"></div>
...
0
votes
5answers
80 views
Looping through table and changing <tr> background depending on which checkboxes are checked
I have a table with table rows, which contain 2 checkboxes in them, one is under the class of student_late, and the other is under the class of student_present.
I want it to do the following:
If the ...
0
votes
0answers
22 views
set method backbone-relational
I have an input select with some options. When the selected value change I capture the event and I want change the relationship (hasOne) between the model of this view and other model called tag that ...
2
votes
1answer
52 views
Dynamically added elements - using $(this)
When adding a element to the dom dynamically like this:
row = """
<div class="ipad-row">
<h3>Sample Row</h3>
<div id="wrapper-placeholder">
...
0
votes
1answer
46 views
When I first run my coffeescript,I got error--
when I execute this command,it is right--
coffee -v
it's output is right.`CoffeeScript version 1.6.1
but when I type
$ coffee
it got error,the log is below
node.js:201
throw e; // ...
0
votes
0answers
28 views
Compile coffescript into single file with valid sourcemaps and output specify filename
I try to compile some coffeescript files with valid source map.
The source maps seems not valid with these command-line options (check out sourceRoot and sources). The other thing is i can not ...
1
vote
0answers
85 views
Ajax return not firing Callback
I'm trying to troubleshoot some code that I did not write and I'm having a lot difficulty trying to figure out why an Ajax return is not firing a Callback. Here is the code that attaches the behaviors ...
0
votes
2answers
96 views
Dynamic async parallel task
Context:
I fetched some "users". I want to know more about these specific users before returning the response, so I fetch detailed info for all users and add that to a result...then I return the ...
0
votes
1answer
36 views
Jasminerice with knockout
I can use Jasminerice (https://github.com/bradphelan/jasminerice) to test a class like:
class @Survey
constructor: (id) ->
@id = id
With the test:
#= require survey
describe "Survey", ...
0
votes
1answer
47 views
Multiple HighCharts on different pages
I have a coffeescript:
chart = undefined
$ ->
chart = new Highcharts.Chart(
chart:
renderTo: "sales "
type: "line"
......
chart1 = undefined
$ ->
chart1 = new Highcharts.Chart(
...
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 ...
-1
votes
2answers
36 views
What is the equivalent of this Coffescript code in Javascript?
phantom = require 'phantom'
phantom.create (ph) ->
ph.createPage (page) ->
page.open "http://www.google.com", (status) ->
console.log "opened google? ", status
...
0
votes
1answer
57 views
image-url not working
images.js.coffee.erb file:
<%
imgs = {}
Dir.chdir("#{Rails.root}/app/assets/images/bg/") do
imgs = Dir["**"].inject({}) {|h,f| h.merge! f => image-url(f)}
end
%>
window.image_path = ...
0
votes
1answer
43 views
Ordinals in words javascript
Is there any elegant way how to get ordinals in word format in js/coffee?
Something like this:
ordinalInWord(1) # => "first"
ordinalInWord(2) # => "second"
ordinalInWord(5) # => "fifth"
0
votes
1answer
28 views
jquery and coffeescript .keyup trigger
Trying to change value with jQuery (preferably Coffeescript) .keyup of #submitter_email to have #submitter_first_name + "." + #submitter_last_name.
Just for clarity:
When #submitter_first_name value ...
0
votes
1answer
87 views
Backbonejs + MarionetteJD - Converting Backbone list view to MarionetteJS Collection View
My BackboneJS "list item view" is defined as follows:
class TagListView extends Backbone.View
el:"#tags"
render: =>
@collection = new TagCollection
@collection.fetch_data
...
1
vote
1answer
29 views
Spinejs routing not saving state
I'm trying to get states into my spine application. On click, an item is added to a list. An url is then created and navigated to, and then the list get's rendered. However, when I use the browsers ...
0
votes
1answer
29 views
call another task from a task
How can I call another task from a task in Cakefile ?
I tried tasks[taskName].action options but didn't work because tasks in not bound in the scope of my Cakefile:
/home/omer/___/Cakefile:52
...
0
votes
0answers
36 views
How to pass a value from html.erb to coffeescript
I want to be able to redirect the user to the corresponding product details page on clicking the image of the product. Here is my code :
index.html.erb
<ul class="productsgrid">
<% ...
0
votes
0answers
35 views
Calling context with WebGL and CoffeeScript
I think what Im asking is impossible but I'm using Coffeescript to create a simple WebGL Library. Im looking at textures and shaders and I have the following setup. In my example file I have this:
...
0
votes
2answers
67 views
0
votes
1answer
62 views
Windows batch combining coffee-script, copy and uglyify
So im trying to write a nice batch file to combine my javascript libraries, combine and compile my .coffee files, combine the both results and then minify it with uglyify.
However im running into some ...
7
votes
2answers
107 views
Generating source maps for multiple, concatenated, javascript files, compiled from Coffeescript
Has any one had any success with this?
Thanks in advance for any tips.
0
votes
2answers
81 views
Best way to serve coffeescript to client without connect-assets
Spend last few hours trying to figure out the best way to compile coffeescript and serve .js on request. I'm using require.js and no, coffee plugin for require is not the answer, just sounds odd... ...
0
votes
1answer
31 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
1answer
39 views
Nodejs - redefining `require` on the client (but not on server) for code-sharing
Redefining nodejs' require on the client, but not on server for code-sharing
I want to share a piece of coffeescript code between the server and the client on Express.
I linked the file from the ...
0
votes
1answer
139 views
Ember.js - How can I bind a property of a model class to a controller?
I'm trying to somehow bind a property of the following model to a controller so that when the model has completed its async call the length property of the model is set and the controller is then ...
0
votes
1answer
46 views
Is there a way to access public members from private function in a CoffeeScript class
How do you convert this CoffeeScript function into a class such that public members can be access by private members ?
MyClass= ->
prVar = 'private'
prMethod1 = ->
console.log ...
2
votes
2answers
116 views
console.log and execution of function with Node.js and CoffeeScript
I compile CoffeeScript with node. In a script I have a function which clears arrays.
I want to console.log the empty array.
I can't see the difference between the 3 block logs:
clearArray = (arr) ...
0
votes
1answer
203 views
AngularJS routeProvider not adding hash at the end of URL
I have the following routeProvider configured:
angular.module('myModule').config ['$routeProvider', (provider) ->
provider
.when '',
templateUrl: '/templates/dashboard.html'
.when ...
1
vote
1answer
53 views
Knockout with coffeescript
I am going to use Knockout with Coffeescript. Following is simple sample code.
**** coffeescript ****
class NewsItem
constructor : (content) ->
@content = ...
0
votes
0answers
61 views
Updating page title with Backbone so it shows properly in browser history
I'm working on an built out with backbone and backbone-layout-manager. When I need to do a view change, I need to update the page to a new title. I've tried adding a convenience method called ...
1
vote
2answers
38 views
Optimizing my CoffeeScript code
I'm currently learning CoffeeScript, since it's more "expressive" than JavaScript, and therefore, I'd like to know how I would optimize the code that I have below
lastDay = 6
weekdays = ["Monday", ...
0
votes
1answer
20 views
Handling Http erorrs in coffeescript
Guys I am trying to handle a http request in coffeescript , but in case the server is down the app just dies with error below , and I cant find the right solution
Code :
http.get ...
0
votes
2answers
60 views
Passing JSON-like parameters in coffeescript
I'm trying to do I few things with the github API written via coffeescript. I'm fairly new to it and I'm having trouble with this block.
getRepos: (user)->
this.github.repos.getFromUser(
...
-2
votes
1answer
161 views
node.js sync mysql queries [closed]
How can I use mysql in node.js ? I want to get something like this:
userData = db.query "SELECT * FROM users WHERE id=1"
form.bind(userData)
res.render 'user/edit', {'form' : form}
What plugin ? ...




