Skip to content

Commit

Permalink
Merge pull request #3156 from cb1kenobi/timob-11317_3_0_X
Browse files Browse the repository at this point in the history
[TIMOB-11317] Fixed missing dependencies in Ti.Media.AudioPlayer and Ti....
  • Loading branch information
Bryan Hughes committed Oct 10, 2012
2 parents 3566fce + 8d03803 commit 6c9a618
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mobileweb/titanium/Ti/Media/AudioPlayer.js
@@ -1,4 +1,4 @@
define(["Ti/_/Evented"], function(Evented) {
define(["Ti/_/declare", "Ti/_/Evented"], function(declare, Evented) {

return declare("Ti.Media.AudioPlayer", Evented, {
});
Expand Down
2 changes: 1 addition & 1 deletion mobileweb/titanium/Ti/Media/Sound.js
@@ -1,4 +1,4 @@
define(["Ti/_/Evented"], function(Evented) {
define(["Ti/_/declare", "Ti/_/Evented"], function(declare, Evented) {

return declare("Ti.Media.Sound", Evented, {
});
Expand Down
6 changes: 0 additions & 6 deletions mobileweb/titanium/dependencies.json
Expand Up @@ -411,12 +411,6 @@
"Ti/_/Map/Google",
"Ti/App/Properties"
],
"Ti/Media/AudioPlayer": [
"Ti/_/Evented"
],
"Ti/Media/Sound": [
"Ti/_/Evented"
],
"Ti/Media/VideoPlayer": [
"Ti/_/declare",
"Ti/_/dom",
Expand Down

0 comments on commit 6c9a618

Please sign in to comment.