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
213 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
54 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
61 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
167 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 ? ...
2
votes
1answer
94 views
Meteor publishing additional user information login / logout
I'm trying to selectively publish user data depending on the role of the user. I want email addresses to be published, and the user name. If the user is an admin, they should be able to see the whole ...
0
votes
1answer
44 views
scrolling animate marginTop problems
I have this code and
.cscc
.messages{
width:95%;
height:200px;
overflow:auto;
}
.message{
width:98%;
&:hover{
background: #d6d6f0;
cursor: pointer;
}
}
.message-author{
...
0
votes
1answer
58 views
Backbone collection fetch doesnt update @collection.length
I fetch the first 15 records of a collection and after clicking on a button I fetch another 15 records for the same collection. After the 2nd time the length of the collection is 15 and not 30. Even ...
0
votes
4answers
82 views
What is the correct syntax for concatenating strings within jquery replaceWith
I have the following html markup
<body>
<div class="old-wrapper">
...lots of stuff
</div>
</body>
I need to replace this with a coffeescript function to give the ...
1
vote
1answer
65 views
Chain function call after function definition [duplicate]
How can I chain a function call after a function definition in CoffeeScript?
Equivalent javascript would be:
var foo = function () {
// stuff
}.bar()
The only way I managed to do it is:
...
2
votes
3answers
53 views
Making sense of class extension and instance properties in Coffee Script
I've just gotten into Coffee Script and am having issues figuring out how class extension works. It seems that properties defined as instance properties on a parent class are being implemented as ...
1
vote
1answer
104 views
RequireJS optimizer with coffeescript
I'm running on severals issues when I'm trying to run the node RequireJS on my project.
This is my folder structure :
-root
-/src
-App.coffee
-/static
-/vendor
...
3
votes
2answers
94 views
how can I log every method call in node.js without adding debug lines everywhere?
I would like to log the user_id of the person making a request and the method name of every method called for a javascript class. For example:
35 - log_in
35 - list_of_other_users
78 - log_in
35 - ...
0
votes
0answers
184 views
Playframework jquery mobile $.ajax fileupload
I'm going crazy trying to do a simple file upload for twitter using scribe, play framework and jquery mobile.
Please, anyone can help to set the correct parameters to send a file via $.ajax to play ...
0
votes
1answer
28 views
Deleting a backbone collection both from the view and the server
Struggling to make the following code work in a view that manages a backbone collection:
class VGStream.Views.Scenarios.ScheduleRisks extends Backbone.View
template: ...
1
vote
1answer
64 views
Compile to `.js` maintaining the same folder structure
In my app (Asp.net mvc) I have the following folder structure:
Scripts folder contains all .js and .coffee files. Inside the folder Controllers I have a folder for each controller.
I need that ...
0
votes
1answer
57 views
Backbone.js is not sending specific attributes to server within the paramRoot
If I save my code..
attrs =
attr1: 1
attr2: 2
attr3: 3
@question.save(attrs)
I have this in my backbone model:
url: '/questions'
paramRoot: 'question'
It will send to my server these ...
0
votes
0answers
41 views
Error when trying to run a git project
I am trying to run this project on my Windows 7:
https://github.com/JoelBesada/pasteboard#readme
I followed the instructions on the project-page but it won't run.
When I execute in my console
...
0
votes
1answer
119 views
Oauth Google client-side authentication from a pop-up using javascript(coffeescript/jQuery)
Im using oauth gem in my rails application.
gem 'omniauth-facebook', '1.4.0'
gem "omniauth-google-oauth2"
Facebook client-side authentication is working properly. I followed,
...
0
votes
1answer
41 views
this and _this on a d3 callback in coffeescript
I have an element created using d3 as follows:
redraw:()->
#
points = d3.select(".point").data( the_data )
points.enter().append("g").classed("point").on("click", @on_click )
...
0
votes
2answers
28 views
Initialize model with a default attribute that assigns from other attribute
The Time model has two defaults attributes duration and remainingTime and I need that remainigTime values will depend to the duration.
class Time extends Backbone.Model
defaults:
duration: ...
0
votes
1answer
75 views
Angularjs accessing methods in another factory
I've got an AngularJS model in which I've created a module called myService to hold some commonly used code which I use throughout my application. My Common factory is where I've been adding all my ...
0
votes
1answer
43 views
CoffeeScript get key/value error from JSON
Here is my json string:
{
"long-url":"http://a.longlongurl.com";
}
parse json string:
var jsonObj = JSON.parse json_str
alert(jsonObj.long-url);
error: ReferenceError: url is not defined. ...
0
votes
1answer
131 views
bootstrap modal created inside coffeescript not working
My problem in a nutshell is that from within coffeescript implemented jQuery-UI handler, I cannot create and show a bootstrap modal. If I try to show the modal using the standard button approach that ...
0
votes
1answer
156 views
Meteor global 'this' seems to be undefined
I'm trying to factor out my increasingly big single CoffeeScript file in my Meteor project, and have followed the official advice on scoping global variables using this. However, even something simple ...
0
votes
1answer
67 views
How to map node objects to node Ids in d3 tutorial?
I'm working through this tutorial -
http://flowingdata.com/2012/08/02/how-to-make-an-interactive-network-visualization/
There's a part I don't understand.
"Finally, we map node id's to node ...
0
votes
2answers
81 views
jquery toggle class between divs
If I have two div elements where users are to choose between two options.
I'd like to show that the user has clicked on it, so by that when user clicks on an element, the class adds some styling.
...
0
votes
3answers
37 views
CoffeScript adding a class with hover
I'm learning how to use CoffeeScript with Ruby on Rails. I have this set up :
$ ->
$this = $(this);
$(".ind").hover(
->
$this.addClass("hoverOver")
->
...
0
votes
1answer
27 views
Extending a CoffeeScript class dynamically
I know that a CoffeeScript class can be extended like this:
Dog::bark = ->
console.log("bark")
I want to be able to do this dynamically. For example, I want to do something like this:
sounds ...
0
votes
1answer
39 views
Recursive function generates duplicates in result
I was playing around with some algorithms in coffescript and ended up wit some unexpected output. Here is my code:
traverse = (tree, stack) ->
stack.push tree.node
if not tree.branches
...
1
vote
1answer
51 views
Coffeescript: Reference class method from instance method without hardcoding
Taking the following code as example:
class MyClass
@staticMethod: -> hello_world()
instanceMethod: -> MyClass.staticMethod()
Is there a way I could reference MyClass from inside ...
0
votes
2answers
95 views
globally installed npm-packages not working [closed]
local npm-packages work as predicted, but it seems impossible for me to get globally-installed packages running. It doesn't even throw any error, it's just not doing anything ( express, coffee, etc.. ...
0
votes
1answer
35 views
Cake throwing errors
I've installed CoffeeScript using NodeJS's npm install coffee-script command and everything went fine. I can also use coffee command and it all works ok.
However when I try to use cake to compile ...
0
votes
1answer
48 views
Configure Ruby on Rails to generate .js not js.coffee [duplicate]
Is there a way to configure ruby on rails to generate .js files and not .js.coffee when generating a new controller. I don't want to use CoffeeScript, and it's annoying having to refactor all my ...
0
votes
1answer
30 views
BackboneJS is performing fetch and failing, but everything in the response is entirely ok
The signal returns a 200. The response text is accurate. Everything is OK. The server log returns no errors at all.
@model.fetch(
success: (model, resp) =>
...
0
votes
1answer
33 views
Bookmarklet and CoffeeScript
I need to write bookmarklet code using CoffeScript. Something like this (JS):
javascript: (function () {
//....
}());
But when I'm trying to write this code in CoffeeScript
javascript: (->
...
6
votes
2answers
488 views
Global classes with Meteor >0.6.0 and CoffeeScript
Since the release of Meteor 0.6.0 and the addition of file-level JavaScript variable scoping, I'm facing an issue using CoffeeScript classes, each of them being defined in its own respective file.
...
0
votes
1answer
41 views
coffeescript ajax setinterval not working
I'm newbie.
I'm trying to make polling for changes(railscast 229) and form submission via coffeesc.
jQuery ->
MessagePoller =
poll: ->
setInterval MessagePoller.request("get_new": ...
1
vote
2answers
41 views
Breaking Hexadecimal Value to multiple lines in CoffeeScript
How do I break a long Hexadecimal Value in Coffeescript so that it spans multiple lines?
authKey = ...
1
vote
1answer
43 views
coffescript is giving error in my project which before works fine
I am looking this video http://railscasts.com/episodes/258-token-fields-revised
This is my coffescript code
jQuery ->
$('#employee_material_asset_tokens').tokenInput '/assets.json'
theme: ...
1
vote
1answer
38 views
How do I import JavaScript files in Rails 3?
I've just started working with Ruby on Rails, and I'm having some difficulty calling JavaScript functions from HTML. I'm using Rails 3.2.13, Ruby 1.9.3, and RubyMine 5.0.2.
I have a CoffeeScript file ...
0
votes
1answer
96 views
Call backbone model function in view
I have a simple function in my model that should return true if the priority is 100
class App.Models.Publication extends Backbone.Model
urlRoot: '/api/publications'
isIncredible: ->
...
1
vote
1answer
66 views
Different SASS/Coffeescript Variable Values Based on Build
I am trying to create a build system for a front-end framework that will create different paths in SASS (and possibly Coffeescript) based on where I am deploying to. So for example, I might have an ...
0
votes
1answer
79 views
why does jasmine-node throw this error when trying to require a spec file with coffee v1.6.2?
This worked fine with coffee v1.4 and v1.5 but the latest version now makes jasmine node throw a weird error when I run:
jasmine-node --coffee --forceexit spec/
...
1
vote
1answer
44 views
Can't match alphanumerics in JavaScript
I want to match a word with between 5 and 15 alphanumeric characters, and I may also include _ and - characters. I'm using JQuery to get the value of an input, I'm programming in CoffeeScript:
...
8
votes
1answer
518 views
coffeescript sourcemap not loading in chrome
I am able to compile coffee file to .map file in the same directory as the .coffee/.js file when I call
coffee --nodejs --debug-brk app.coffee
and start the node-inspector. The js version of the ...
0
votes
1answer
71 views
why does a node.js process suddenly die on osx with no explanation in any log file?
90% of the time I always get a stack trace. But sometimes the process just quits and I have no idea why. Anyway to print the stack trace always? Or find more information in dmesg or something?
0
votes
0answers
41 views
fs undefined in cakefile
I'm trying to build a simple cakefile to perform build tasks for a node project I'm working on. Following this gist from github, I've managed to throw the following basic code together:
CoffeeScript ...



