1
0
Fork 0
forked from 0x2620/oxjs

load svg images inline

This commit is contained in:
rolux 2011-08-09 19:00:39 +02:00
commit dd7191e8d4
12 changed files with 78 additions and 59 deletions

View file

@ -372,7 +372,7 @@ Ox.VideoEditor = function(options, self) {
]),
selectable: false,
title: $('<img>').attr({
src: Ox.UI.getImagePath('symbolSet.svg')
src: Ox.UI.getImageURL('symbolSet')
}),
tooltip: 'Actions and Settings',
type: 'image'
@ -400,7 +400,7 @@ Ox.VideoEditor = function(options, self) {
})
.appendTo(self.$videobar);
self.$videoMenuButton.find('input').attr({
src: Ox.UI.getImagePath('symbolSet.svg')
src: Ox.UI.getImageURL('symbolSet')
});
self.$selectButton = Ox.Button({
@ -588,7 +588,7 @@ Ox.VideoEditor = function(options, self) {
],
max: 2,
title: $('<img>').attr({
src: Ox.UI.getImagePath('symbolSet.svg')
src: Ox.UI.getImageURL('symbolSet')
}),
tooltip: 'Actions and Settings',
type: 'image'
@ -596,7 +596,7 @@ Ox.VideoEditor = function(options, self) {
.css({float: 'left'})
.appendTo(self.$annotationsbar);
self.$annotationsMenuButton.find('input').attr({
src: Ox.UI.getImagePath('symbolSet.svg')
src: Ox.UI.getImageURL('symbolSet')
});