Skip to content

Commit

Permalink
Merge pull request #3155 from cb1kenobi/timob-11317
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 50b1079 + f10d7ec commit fb68302
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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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 fb68302

Please sign in to comment.