diff options
-rw-r--r-- | imdb-lookup/css/style.css | 1 | ||||
-rw-r--r-- | imdb-lookup/js/app.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/imdb-lookup/css/style.css b/imdb-lookup/css/style.css index 8c96bbe..5d3147c 100644 --- a/imdb-lookup/css/style.css +++ b/imdb-lookup/css/style.css @@ -57,6 +57,7 @@ .plot { margin-top: 10px; } .consensus { margin-top: 10px; font-style: italic;} .box-footer { + z-index: -1; position: absolute; bottom: 0px; right: 0px; diff --git a/imdb-lookup/js/app.js b/imdb-lookup/js/app.js index c2bcbd1..d369ee6 100644 --- a/imdb-lookup/js/app.js +++ b/imdb-lookup/js/app.js @@ -107,7 +107,7 @@ App.IndexController = Ember.ArrayController.extend({ Ember.Handlebars.helper('filelink', function(value, options) { - var escaped = encodeURIComponent(value); + var escaped = encodeURI(value); return new Ember.Handlebars.SafeString('<a href="' + escaped + '">' + value + '</span>'); }); |