An Ember application starts with its main template. Put your header, footer, and any other decorative content in application.handlebars
.
<header>
<img src="masthead">
</header>
<footer>
def render_subject(context) | |
render subject, context | |
end | |
def render_content(context) | |
render content, context | |
end | |
private |
require 'sinatra' | |
get('/') { 'Hello world' } |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.host; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" |
var FormView = Backbone.View.extend({ | |
el: '#form', | |
events: { | |
// Fired automatically when a file-type input is detected with a | |
// non-blank value. You can use this hook to implement a handler that | |
// will deal with those non-blank file inputs. Returning false will | |
// disallow standard form submission. | |
'ajax:aborted:file' : 'ajaxAbortedFile', |