Skip to content

Commit

Permalink
Merge branch 'FLUID-4635' into demo
Browse files Browse the repository at this point in the history
* FLUID-4635:
  FLUID-4635: Commenting out console.log statements which prevent the video player from working in IE when the dev tools are off.
  • Loading branch information
michelled committed Mar 6, 2012
2 parents 62b63aa + c636863 commit ccb0c86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/VideoPlayer_framework.js
Expand Up @@ -81,7 +81,7 @@ var fluid_1_5 = fluid_1_5 || {};
var newValue = fluid.get(that.pentModel, key);
// synthetic change summarising ultimate individual effect of pent change
var synthChange = {type: "ADD", path: key, value: newValue};
console.log("Replaying pent change ", synthChange, " to target ", target);
// console.log("Replaying pent change ", synthChange, " to target ", target);
var changes = value.func(newValue, key, target, [synthChange]);
fluid.requestChanges(target.applier, changes);
}
Expand Down
4 changes: 2 additions & 2 deletions lib/infusion/MyInfusion.js
Expand Up @@ -23489,7 +23489,7 @@ var fluid_1_5 = fluid_1_5 || {};
};

fluid.uiEnhancer.updateModel = function (newModel, applier) {
console.log("******\n******* UIEnhancer updateModel ", newModel, " applier " + applier.changeid);
//console.log("******\n******* UIEnhancer updateModel ", newModel, " applier " + applier.changeid);
applier.requestChange("", newModel);
};

Expand Down Expand Up @@ -24338,7 +24338,7 @@ var fluid_1_5 = fluid_1_5 || {};
});

fluid.uiOptions.finalInit = function (that) {
console.log("!@!@!@!@!\n!@!@!@!@ uiOptions finalInit, change to applier ", that.applier.changeid);
//console.log("!@!@!@!@!\n!@!@!@!@ uiOptions finalInit, change to applier ", that.applier.changeid);
that.applier.requestChange("selections", fluid.copy(that.settingsStore.fetch()));

/**
Expand Down

0 comments on commit ccb0c86

Please sign in to comment.