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
0answers
18 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', '~> ...
1
vote
2answers
28 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")
...
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 ...
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
0answers
81 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:
...
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
20 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 ...
1
vote
2answers
47 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 ...
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
27 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
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 = =>
...
1
vote
1answer
13 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 ...
0
votes
2answers
35 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 ...
0
votes
1answer
21 views
Generating coffee script in VS2012 use WebEssentials or Mindscape
The coffee script code:
class ClassA
constructor: ->
alert ("Hello World")
Generating Javascript code use Web Essentials or Mindscape:
(function() {
var ClassA;
ClassA = (function() {
...
0
votes
1answer
55 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
2answers
30 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
0answers
37 views
Angular Directives: I have to call $apply twice?
Here's the deal. I have a page where you just edit a user. It has basic inputs and everything. I then created a directive to handle uploading of images through ajax:
angular.module('fileDirectives', ...
0
votes
0answers
42 views
Error using karma with Coffeescript: JSON.stringify cyclic structure serialization
Why am I getting this error running karma with Coffeescript?
$ karma run
WARN [watcher]: Pattern "/home/yang/reactive.coffee/test/mock/**/*.js"
does not match any file.
WARN [watcher]: Pattern ...
1
vote
1answer
42 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 ...
0
votes
1answer
24 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
52 views
Need help identifying this code [closed]
What is this written in, and how can I convert it to HTML?
http://pastebin.com/ePPXkhMP
I need to edit it, but not sure how to convert it to HTML. I need to style it, but not sure how to start. ...
0
votes
1answer
21 views
How to appending a Form_For block to a Target div with in coffe.erb file?
Here is what I want to accomplish:
Let user enter an home address via a form
Return the results from an ajax call on the page
Have a button on each result that allows me to save an attribute of that ...
0
votes
0answers
21 views
Mongoose only saves certain fields (Mongoose + Restify)
This code won't save to my MongoDB. If I change doc.foursqure_key to doc.username or doc.password, it saves just fine.
@User.findOne({ username: 'justin' }, (err, doc) =>
...
0
votes
0answers
34 views
Handlebars: iterate through @model attributes
I'm using Chaplin and i want to iterate through the associated @model's attributes in Handlebars.
Normally if i know which attribute i want to access is as easy as {{attributeName}} to print its ...
0
votes
1answer
31 views
Backbone event trigger not being picked up.
The code that I have a question spans multiple pages, so I'll do my best to post what's relevant.
I've created a table using d3, and on click, I'm changing a model. The method that I'm using to ...
1
vote
1answer
35 views
If statement with callback design pattern in coffeescirpt
I would like to do something like this in Coffeescript
data = [default, data]
if has_some_data (err, data)-> #has some data hits the db and is a callback
data = data.get_some_data()
...
1
vote
2answers
46 views
Why do coffeescript/jquery functions not trigger on DOM elements loaded via ajax, and how to fix?
In a Rails 3.2 app I have a coffeescript function that toggles a css class when a link is clicked.
#coffeescript
jQuery ->
$(".toggle-link").click ->
$(this).toggleClass "selected"
#view
...
1
vote
1answer
36 views
How to access child model static from parent within Coffeescript inhertiance
I have the following BaseModel class
namespace 'Models', (exports) ->
class exports.BaseModel
toJSON: =>
if @jsonProperties? then ko.toJSON( @, @jsonProperties() ) else null
Then ...
0
votes
2answers
65 views
#each with call to helper ignores first entry in array
I'm trying to generate a menu with handlebars, based on this array (from coffeescript):
Template.moduleHeader.modules = -> [
{ "moduleName": "dashboard", "linkName": "Dashboard" }
{ ...
2
votes
2answers
59 views
Monitoring sub-task for grunt-contrib-watch
I have the following Gruntfile.coffee. I am monitoring the watch task as shown below to see file changes and then compile the changed file to coffee-script.
# Watch task
watch:
coffee:
files: ...
0
votes
0answers
42 views
Problems with observable property
I have a ViewModel with some filters properties:
class IndexModel
TermoBusca: ko.observable()
class ViewModel extends IndexModel
Nome: ko.observable()
Endereco: ko.observable()
...
0
votes
1answer
14 views
Printing out array in constructor coffeescript
This should print out everything in collection
but it only prints out two elements.
Why won't it print out the entire list?
Is it some kind of race case?
http://jsfiddle.net/Czenu/1/
class ...
0
votes
0answers
46 views
KineticJS - Slow performance when animating tile opacity [Example]
I'm having a problem with a grid of Rect shapes.
Grid is 120 by 60.
JSFiddle example here http://jsfiddle.net/5MfYR/
Here is the equivalent in CoffeeScript code:
window.size = {
width: ...
0
votes
0answers
30 views
KineticJS - Is fillPatternImage recalculated every redraw?
I'm building a game and have a 3000x2000 map (1 png file).
I'm creating 60*40 (x*y) tiles.
So I loop through the coordinates and create a tile for each set of coordinates.
for ix in [0..60]
for ...
0
votes
3answers
42 views
How to pass function as parameter with multiline array in IDEA?
Suppose I have this function in coffeescript file
test = (arr, fn) ->
console.log item for item in arr
fn()
Here is how I call it
test [1, 2, 3, 4, 5], ->
console.log "start"
...
1
vote
1answer
36 views
How to keep coffeescript file and its compiled version in different folders?
I want my file/foder structure be clean on my website. So I don't want coffescript file be in the same folder as its compiled version.
While developing I'm using --watch key of compiler. I used this ...
3
votes
0answers
43 views
mouseUp firing after button click in mobile Safari (iOS simulator)
I'm trying to build an editing view for a mobile app powered by Backbone.js and Trigger.io. The user goes to a note view and makes changes by tapping "edit" in the top right. When the "edit" button is ...
0
votes
0answers
31 views
Backbone-relational update models in-place after save?
I have a Book model that inherits from RelationalModel and implements hasMany relationship with Page using backbone-relational as such:
class Book extends Backbone.RelationalModel
relations: [
...
0
votes
2answers
45 views
Issues with inheritance in Backbone/Coffeescript
So I'm starting this new app using Backbone/CoffeeScript. I'm using a back end of Sinatra, so my Coffeescript compiler is the default command line one which just creates the js files. I'm trying to ...
2
votes
0answers
52 views
Debugging JS/CoffeeScript code: Events, Callbacks etc
Recently I am finding difficulty understanding whats happening in a CoffeeScript/Backbone app. Its hard to trace whats happening quickly without a very slow step through. The problem I think is: I ...
0
votes
2answers
32 views
Parsing AJAX response in callback
I need to access a piece of data from some HTML response in an AJAX callback.
In my Coffeescript, I want to access the completion-id data attribute. When I do the following:
$('.mark-completed')
...
1
vote
1answer
26 views
Coffeescript - how do I check string equality when passing string through a splat?
I'm having trouble checking whether two strings are equal when one of them was passed through a splat argument. Because coffeescript uses strict comparisons, and because it makes a copy of the ...
2
votes
2answers
105 views
Override Backbone.sync() at Model level to send extra params?
To be quite honest I'm stuck trying to override Backbone's sync() method for a Model, I have the signature for the function in place, and it gets triggered correctly, but I don't know what to put in ...
1
vote
1answer
25 views
Augment properties with literal notation
Let's assume I have the following CoffeeScript code:
person =
name: 'Alice'
Now, I want to augment this object with two additional properties. The common way is to write:
person.age = 34
...
0
votes
0answers
26 views
How can I persist data from one View rendering to the next in Backbone.js (Coffeescript)
PositionSelectView.coffee:
class PositionSelectView extends
template: template
attach: ->
@collection.on 'add reset remove', @render
Handlebars template, ...
0
votes
1answer
36 views
ng-show is not working within HAML template on Internet Explorer 7
I have the following minimum failure case:
%span.add-on
- if planned_date.blank?
%i.icon-calendar
- else
if successful
%i.icon-calendar.foo
...
0
votes
2answers
34 views
more less example with coffeescript
I'm trying to add basic more/less links to toggle element visibility.
How do I insert preventDefault ?
Also it only works on first toggle, after that it doesn't toggle out. Any error?
...
0
votes
1answer
19 views
Using Nanoc with Bower and CoffeeScript
I had to use the static datasource for Bower packages because Nanoc (filesystem_unified
datasource) does not allow multiple files with same filename and different extension.
But the static ...
0
votes
1answer
28 views
How to work with copy of an array and reset it later
I have an array list with all the predefined data I want to work on.
Then I want to make a copy of that array on which I do the work, i.e. shuffling and then popping one element. Now after the list ...
4
votes
2answers
59 views
How to get JSON from a distant server in an express server?
I'm looking a way to replicate the jQuery method getJSON but server side.
The server I'm using is a node.js server with express framework written in coffeescript.
The code I have client side is :
# ...

