End of day commit, styling and dropdown logic

This commit is contained in:
2014-06-30 18:20:51 +02:00
parent dbb369acb9
commit 588139eb54
13 changed files with 135 additions and 30 deletions
@@ -2,7 +2,7 @@
//= require jquery_ujs
//= require jquery.ui.sortable
//= require vendor/modernizr
//= require foundation
// require foundation FOUNDATION 5 JAVASCRIPT IMPLEMENTATIONS AND EMBER ARE NOT COMPATIBLE, FOUNDATION IS TOO SIMPLISTIC AT THE MOMENT AND DESTROYS DOM EVENTS
//= require js-routes
//= require translations
//= require qwaiter
@@ -20,8 +20,6 @@ var Qstorage = localStorage;
$.extend($translations.en, <%= I18n.t('supplier', locale: :en).to_json %>);
$.extend($translations.nl, <%= I18n.t('supplier', locale: :nl).to_json %>);
$(document).foundation();
String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}