diff --git a/ApiClient.js b/ApiClient.js
index a42c27949e..e260a0a050 100644
--- a/ApiClient.js
+++ b/ApiClient.js
@@ -545,9 +545,11 @@ MediaBrowser.ApiClient = function ($, navigator, JSON, WebSocket, setTimeout, wi
});
};
- self.getNewLiveTvTimerDefaults = function () {
+ self.getNewLiveTvTimerDefaults = function (options) {
- var url = self.getUrl("LiveTv/Timers/Defaults");
+ options = options || {};
+
+ var url = self.getUrl("LiveTv/Timers/Defaults", options);
return self.ajax({
type: "GET",
diff --git a/dashboard-ui/livetvnewrecording.html b/dashboard-ui/livetvnewrecording.html
index f540e99102..3c101634ee 100644
--- a/dashboard-ui/livetvnewrecording.html
+++ b/dashboard-ui/livetvnewrecording.html
@@ -25,76 +25,90 @@
-
- - -
+ + +