From f8816e75220df609a35de6dc17f82fc00778fd69 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Thu, 18 Jul 2013 14:40:43 +0000 Subject: [PATCH] video player: update previous/next buttons --- source/Ox.UI/js/Video/VideoPlayer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Ox.UI/js/Video/VideoPlayer.js b/source/Ox.UI/js/Video/VideoPlayer.js index 0b0daaa3..81bf4024 100644 --- a/source/Ox.UI/js/Video/VideoPlayer.js +++ b/source/Ox.UI/js/Video/VideoPlayer.js @@ -730,7 +730,7 @@ Ox.VideoPlayer = function(options, self) { self.$nextChapterButton = Ox.Button({ style: 'video', - title: 'arrowRight', + title: 'playNext', tooltip: Ox._('Next'), type: 'image' }) @@ -853,7 +853,7 @@ Ox.VideoPlayer = function(options, self) { self.$previousChapterButton = Ox.Button({ style: 'video', - title: 'arrowLeft', + title: 'playPrevious', tooltip: Ox._('Previous'), type: 'image' })