This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[rafaelvega@arch-rafa ember-runner]$ ember-runner preview | |
[task:checkConfig] Started | |
[task:configure] Started | |
[task:clean] Started | |
[vendors] Started | |
[apps] Started | |
[task:checkPackages] Started | |
[task:walk] Started | |
[build] Started | |
[Build] Package: handlebars |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[rafaelvega@arch-rafa ember-runner]$ ember-runner preview | |
[task:checkConfig] Started | |
[task:configure] Started | |
[task:clean] Started | |
[vendors] Started | |
[apps] Started | |
[task:checkPackages] Started | |
[task:walk] Started | |
[build] Started | |
[Build] Package: jquery-1.6.2.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "rake-pipeline-web-filters" | |
require "rake-pipeline-web-filters/helpers" | |
input "app" | |
output "compiled" | |
# Concatenate all js classes in one big file | |
match "js/{models,controllers}/**/*.js" do | |
concat "app.js" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get list of resources | |
*/ | |
fetch: function(store, query) { | |
store.loadQueryResults(query, SC.SparseArray.create({delegate: this, store: store, query: query, rangeWindowSize:20})); | |
return YES; | |
}, | |
sparseArrayDidRequestLength: function(sparseArray) { | |
this.sparseArrayDidRequestRange(sparseArray, { start: 0, length: 20 }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
response: function(){ | |
var data = this.State.Response.data.responseText; | |
if(typeof(data) != 'undefined'){ // TODO: This is a temporary fix, see http://getsatisfaction.com/balupton/topics/back_button_triggers_an_ajax_request_thet_should_not_happen | |
var fb_params = {content: data} | |
$.extend(true,fb_params,ajax_deeplinks.fancybox_options); | |
$.fancybox(fb_params); | |
$('#fancybox-content a.ajax').ajaxify(); | |
} | |
else{ | |
$.fancybox.close(); |
NewerOlder