Remove unused js code for login page

This commit is contained in:
Steffen van Bergerem 2014-08-18 21:18:38 +02:00
parent 8654e1b3ad
commit 9e32eb370a
4 changed files with 0 additions and 40 deletions

View file

@ -18,7 +18,6 @@
* Fix live updating when renaming an aspect [#5049](https://github.com/diaspora/diaspora/pull/5049)
* Use double quotes when embedding translations into Javascript [#5055](https://github.com/diaspora/diaspora/issues/5055)
* Fix regression in mobile sign-in ([commit](https://github.com/diaspora/diaspora/commit/4a2836b108f8a9eb6f46ca58cfcb7b23f40bb076))
* Fit pod name to page size on the sign in page [#5056](https://github.com/diaspora/diaspora/pull/5056)
* Set mention notification as read when viewing post [#5006](https://github.com/diaspora/diaspora/pull/5006)
* Set sharing notification as read when viewing profile [#5009](https://github.com/diaspora/diaspora/pull/5009)
* Ensure a consistent border on text input elements [#5069](https://github.com/diaspora/diaspora/pull/5069)

View file

@ -1,6 +1,5 @@
app.Router = Backbone.Router.extend({
routes: {
"users/sign_in": "login",
"help": "help",
//new hotness
@ -32,10 +31,6 @@ app.Router = Backbone.Router.extend({
this.route(/^bookmarklet(?:\?(.*))?/, "bookmarklet");
},
login: function() {
$('#huge-text').flexime(1.05, {responsive:true});
},
help: function() {
app.help = new app.views.Help();
$("#help").prepend(app.help.el);

View file

@ -40,4 +40,3 @@
//= require bootstrap-dropdown
//= require bootstrap-modal
//= require osmlocator
//= require flexime

View file

@ -1,33 +0,0 @@
/*
*
* flexime.js
* Flexible font-size for huge text (pod name) in login page.
*
*/
jQuery.fn.flexime = function (refine, options) {
var opt = $.extend({
responsive: false
}, options);
var $this = $(this);
var r = refine || 1;
var max_size = 200; // #huge-text default size
var resize = function () {
var clone = $this.clone();
clone.css({'font-size':'10px','display':'inline-block','visibility':'hidden'}).appendTo('body');
var size = Math.floor(($this.width() / clone.width()) * 10 / r);
if (size < max_size) $this.css({'font-size':size+'px', 'line-height':Math.floor(size*.2)+'px'});
clone.remove();
};
resize();
if (opt.responsive)
$(window).on('resize', resize);
return this;
}