diff options
| -rw-r--r-- | public/assets/javascripts/mx/primitives/mx.youtube.js | 3 | ||||
| -rw-r--r-- | public/assets/javascripts/ui/editor/MediaEditor.js | 2 | ||||
| -rwxr-xr-x | public/assets/stylesheets/app.css | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/public/assets/javascripts/mx/primitives/mx.youtube.js b/public/assets/javascripts/mx/primitives/mx.youtube.js index 5514359..f7f00aa 100644 --- a/public/assets/javascripts/mx/primitives/mx.youtube.js +++ b/public/assets/javascripts/mx/primitives/mx.youtube.js @@ -48,7 +48,7 @@ MX.Youtube = MX.Object3D.extend({ }.bind(this), 300) } else { - // not sure why i need to wait here.. + // not sure why i need to delay here.. // stopped working until i added the setTimeout setTimeout(function(){ this.build(uid) @@ -132,7 +132,6 @@ MX.Youtube = MX.Object3D.extend({ }, pause: function(){ - console.log(this, bzbz = this.player) this.paused = true this.player.pauseVideo() }, diff --git a/public/assets/javascripts/ui/editor/MediaEditor.js b/public/assets/javascripts/ui/editor/MediaEditor.js index f4e8071..cd8fb63 100644 --- a/public/assets/javascripts/ui/editor/MediaEditor.js +++ b/public/assets/javascripts/ui/editor/MediaEditor.js @@ -47,7 +47,7 @@ var MediaEditor = FormView.extend({ if (this.scenery) { this.unbind() } -console.log(scenery) + this.bind(scenery) this.$el.addClass("active") diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 61a4fa9..9072542 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -540,6 +540,7 @@ iframe.embed { } .mx-object3d.image, .mx-object3d.video, +.mx-object3d iframe, .mx-object3d canvas, .mx-object3d.backface-hidden { -webkit-backface-visibility: hidden; |
