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

Basics of Haml-Coffee for Backbone tempting

I'm looking into Haml-Coffee and am a little confused about how to get it working. The github's information didn't seem very clear. Can anyone layout a basic use of it with Backbone for tempting.
0
votes
1answer
127 views

Rails rendering of controller_action.js.erb (AJAX) with the respond_to - can't it be done with coffe/haml?

I am one of those people who use HAML instead of ERB, and Coffeescript "instead" of Javascript. My application uses a lot of AJAX responding, e.g.: def controller_action # Lots of code here... ...
0
votes
0answers
30 views

gmaps4rails display list in table

hi i am using the gmaps4rails gem, and have edited one of the coffee script files so that i can have a list data displayed in a table instead of an unordered list. the problem i am facing now is that ...
0
votes
2answers
486 views

Jquery onclick popup tooltip

I need the javascript code for tooltip to appear onclick for 10 seconds Mostly Without using html code, or any plugins $('a.pet_type_link').click(function() { //I need tooltip to appear for ...
1
vote
0answers
53 views

Filter "coffee is not defined error in HAML 4

For some reason my deployed rails app is now giving me a: Haml::Error in Explore#index Filter "coffee" is not defined. ...after updating to latest version rails and latest haml 4. Locally, I do ...
0
votes
3answers
86 views

Put HTML in javascript using Ruby

Note: This is a very strange and unique use case so I apologise in advance if it seems a bit ass-backwards. I have a haml file content.haml and a coffeescript file main.coffee. I wish to somehow get ...
0
votes
1answer
103 views

Prevent rails form submission on ng-invalid

I have a form, generated through rails helpers, that has some AngularJS on it. = form_for some_models do |f| %fieldset.form-horizontal %div.some-class #And so on and so forth ...
-1
votes
1answer
117 views

watch expression is not picking up on model change from ng-change

I have the following Rails HAML: = select_tag "some-class", options_for_select([['None', '']], ''), { class: 'some-other-class', ...
2
votes
2answers
919 views

angularjs with client side haml

I've just started using AngularJS with my Rails app and as I'm used to using haml templates within Rails I would like to do the same with AngularJS on the client side. Problem is I don't know where to ...
0
votes
1answer
171 views

Bootstrap-alert dismisses parent container

Bootstrap-alert plugin works really strange. I have following haml structure: .flashes .message.fade.in %p Hi there! And some coffee: jQuery -> $('.flashes').on 'click', '.message', ...
1
vote
0answers
114 views

Executing jquery within rails haml partials returned via jquery ajax through $q

So I am writing an Angular Frontend for a pre-existing Rails Application. I understand that using $q is at best an intermediate step before converting the back end to serve a REST Api directly to ...
1
vote
3answers
536 views

Displaying ng-attributes in rails haml partials returned via jquery ajax through $q

So I am writing an Angular Frontend for a pre-existing Rails Application. I understand that using $q is at best an intermediate step before converting the back end to serve a REST Api directly to ...
0
votes
2answers
171 views

Haml Coffee Assets Template Error, no access to Backbone JS model?

I'm using haml_coffee_assets in a Rails 3.2 application. The following works in an ejs template: <table> <tr> <th></th> </tr> <% ...
0
votes
1answer
299 views

ajax in ruby on rails for a like/unlike button

So i have a page with a like button under my comments and am trying to work out how to do this without refreshing the whole page currently the code looks like this: - if can? :like, comment = " ยท " ...
-1
votes
1answer
244 views

Is it possible to share HAML templates between Coffeescript (Backbone.js) and Rails 3.2?

Is this possible? I know people use mustache to share templates, but can you use HAML? I would prefer pre compilation.
2
votes
1answer
541 views

Sharing templates beetween JS and Rails using Haml + Mustache

I am trying to make common templates that used both by Rails and the client side, ie in coffescript. I use hogan_assets and haml_assets to export templates to JS. However I can't find a way to use ...
3
votes
0answers
317 views

Can I use HAML-style embedded ruby with Coffeebeans / js.coffee views?

My rails controller returns JS often, and I'm using Coffeebeans to allow me to have js.coffee views. The only problem with this is that it uses the <%= ... %> syntax for embedded Ruby... I would ...
1
vote
2answers
115 views

Javascript - Changing text on event object's sibling

I am trying to get my js to work for my website so that when a user selects a file to upload the text on the button that is sibling of the event caller will change. Unfortunately I can't get it to ...
0
votes
1answer
97 views

Is it possible to pass a JavaScript Object as an argument to the Locals Hash in a render: partial call?

I think this is easily explained by looking at code, so I'm posting a couple of snippets that show how I usually do Ajax things in Rails 3.2, The following will work: create.js.coffee $("<%= raw ...
4
votes
1answer
187 views

How do I make a haml-coffee closure which spans multiple lines?

I am trying to add a small amount of logic to one of my templates (please don't scold me on the faults of putting logic in the view) and am having a hard time getting the correct hamlc syntax. I am ...
0
votes
1answer
335 views

Sammy.js - Rendering outside route

I am building a Sammy application and I want to use Haml for it. Looks good so far. app = $.sammy '#main', -> @use 'Haml' # Get some server data $.getJSON '/some-data', (data) -> ...
3
votes
1answer
835 views

'This' in phonegap

What is 'this' in phonegap? I am working on an app where I have local javascript packed with the app and remote javascript pulled from a server. I am using coffeescript to generate all the ...
1
vote
3answers
556 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") ...
0
votes
1answer
277 views

coffeescript and haml in pop ups

popitup = (url) -> newwindow = window.open(url, "name", "height=200,width=150") newwindow.focus() if window.focus false this is my code but i want to link popup to a haml file instead of ...
0
votes
2answers
75 views

disable dates using an object

The following is not working because @only is undefined (stated 30 times in the log). I guess the function is executed out of the scope, but I don't understand why and how to solve this. class ...
0
votes
1answer
441 views

rails coffescript & haml include errors

I'm using Rails 3.1 and I keep getting an error when trying to use any jQuery extension. kintouch.js.coffee jQuery -> $('.best_in_place').best_in_place() index.html.haml = best_in_place ...
2
votes
1answer
635 views

Tooltip does not disappear after a new page is loaded

I am using twitter boostrap to implement tooltip for my web app (twipsy) My implementation is as follows: %li.friend %a{:href=>"#!/<%=nick%>/<%=question_slug%>", :rel=>"twipsy", ...
1
vote
1answer
1k views

Is there a case statement in HAML?

I'd like to do the following in HAML (it's HAML-Coffee): - case msg.type - when "usertext" = msg.body - when "direct" = msg.content.kbcontent_body But I get an error "Reserved ...
9
votes
1answer
3k views

Partials in Coffee HAML (.hamlc)

I am using backbone.js on a rails backend with HAML Coffee, which is compiled by haml_coffee_assets. There is some duplication in my templates. Is there a way to create rails-like partials to dry up ...
2
votes
1answer
1k views

How to select (highlight) text in input textbox

Hi I am using haml and coffescript to write my code. The code snippets are as follows //haml code for input box and value %input.detail_text{value: "<%= 'http://dailymus.es/#!/' + ...
1
vote
2answers
1k views

Compile haml, sass & coffeescript on xcode build with PhoneGap

I am using PhoneGap to build an html 5 backed app and I would like to use haml, sass and coffee-script. Is there a way to build in a hook to the build process in xcode 4.2 so that the files are ...
1
vote
1answer
613 views

Triggering Coffeescript Functions in Rails view

In some of our Rails views, we have javascript functions that load certain data asynchronously to populate the page. Our application.js file loads all javascript in the assets/javascripts folder. ...
11
votes
1answer
2k views

Coffeescript and Haml with unobtrusive Javascript (data-remote) in Rails 3.1

I searched le interwebs, but I haven't found someone experiencing the same problem as me, so I propose my question here. I just started using Rails 3.1 with Compass, Haml and CoffeeScript and ran ...
0
votes
3answers
164 views

What does this javascript code snippet do?

This is a short question on account that I haven't found the proper answer by using Google. Ok, I have this Rails project which has a lot of JavaScript files (CoffeeScript Actually), and it appears ...
16
votes
4answers
9k views

How to access instance variables in CoffeeScript engine inside a Slim template

I have a Rails controller in which I am setting a instance variable - @user_name = "Some Username" In my .slim template I am using coffee engine to generate javascript and want to print out the ...
1
vote
1answer
969 views

Django with HAML, SASS, CoffeeScript and related compressors

I would like to use HAML-like templates together with SASS and CoffeeScript in a Django site. Currently I am looking into DMSL for HAML templates, and recompiling SASS (Compass) and CoffeeScript files ...
1
vote
1answer
186 views

How to make Textmate detect code after the filter :coffeescript?

Using the Haml :javascript filter, the code following the filter is accurately detected as javascript. This isn't happening with the :coffeescript filter. How do I make Textmate recognize this code ...
0
votes
1answer
544 views

How can I use haml within a coffeescript file?

Is it possible to use haml within a coffeescript file in a rails 3.1 project? What is the correct order of the file extensions? My last try was that: home.js.haml.coffescript $ -> alert ...
2
votes
2answers
2k views

Textmate Whitespace/Invisibles - Show Spaces

Is there a way to show "Soft Tabs" (spaces) in TextMate? View → Show Invisibles works well for keeping track of indentation if you're using tabs for indentation. Unfortunately in languages where ...
4
votes
2answers
3k views

How do I embed CoffeeScript in Haml outside of Ruby/Rails?

It's easy to use coffee-haml-filter within Rails. Under Rails 2, run script/plugin install git://github.com/gerad/coffee-haml-filter.git Under Rails 3, you can add the line gem ...
2
votes
3answers
884 views

Using HAML with custom filters

I feel quite excited about HAML and CoffeeScript and am working on tutorial showing how to use them in non-Rails environment. So, haml has easy to use command-line utility haml input.haml ...