sammy
sammy copied to clipboard
Sammy is a tiny javascript framework built on top of jQuery, It's RESTful Evented Javascript.
I just hit a problem in my application where I had the following routes defined: ``` this.get('', function () { console.log("started"); }); this.get('#login', function () { console.log("login"); appView.shouldDisplayLogin = true;...
When I try to capture the form post initiated by a hyperlink click, Sammy failed to match the route: ``` foo ``` Is it Sammy can only capture posts via...
I have sammy application with < a href="tel:11111" >Contact us< /a > on the page. The browser shows openning external application dialog by clicking this link. But if you dismiss...
It would be great to add support for Firefox's non-standard globalStorage and IE's non-standard userData to Sammy.Storage. globalStorage (Firefox 2+): https://developer.mozilla.org/en/dom/storage#globalStorage userData (IE 5+) http://msdn.microsoft.com/en-us/library/ms531424(v=vs.85).aspx
using: (https://github.com/quirkey/sammy/raw/master/examples/hello_world/index.html) with jquery: (http://code.jquery.com/jquery-1.5.1.min.js) sammy: (https://github.com/quirkey/sammy/raw/master/lib/sammy.js) I've added break sammy like: break sammy sammy works fine until i click "break sammy" link. The hash changes on location bar but...
The API documentation at quirkey.com mentions `Handlebars.SafeString` but lib/plugins/sammy.handlebars.js does not export it. This makes it harder to render custom HTML in a handlebars helper function because any string returned...
Today I have been using helpers and plugin patterns. I really like the way they work and they are generally far easier to understand and use, for newbies, than the...
It would be nice if you could unbind events that were bound to the app using app.bind In the interim, anyone who finds this bug will be interested in app.listeners,...
# mshale [http://sammyjs.org](http://sammyjs.org) ## Description Sammy is a tiny javascript framework built on top of jQuery inspired by Ruby's [Sinatra](http://sinatrarb.com). ## Installation Download Sammy.js and install it in your public...