diff --git a/browser/base/content/tabview/iq.js b/browser/base/content/tabview/iq.js index 0473c87d1ea5..991f0f17d784 100644 --- a/browser/base/content/tabview/iq.js +++ b/browser/base/content/tabview/iq.js @@ -532,7 +532,7 @@ iQClass.prototype = { // Possible "options" properties: // duration - how long to animate, in milliseconds // easing - easing function to use. Possibilities include - // 'tabcandyBounce', 'easeInQuad'. Default is 'ease'. + // "tabviewBounce", "easeInQuad". Default is "ease". // complete - function to call once the animation is done, takes nothing // in, but "this" is set to the element that was animated. animate: function(css, options) { @@ -543,7 +543,7 @@ iQClass.prototype = { options = {}; let easings = { - tabcandyBounce: 'cubic-bezier(0.0, 0.63, .6, 1.29)', + tabviewBounce: "cubic-bezier(0.0, 0.63, .6, 1.29)", easeInQuad: 'ease-in', // TODO: make it a real easeInQuad, or decide we don't care fast: 'cubic-bezier(0.7,0,1,1)' }; diff --git a/browser/base/content/tabview/modules/utils.jsm b/browser/base/content/tabview/modules/utils.jsm index f74560e9a328..96a0e4877828 100644 --- a/browser/base/content/tabview/modules/utils.jsm +++ b/browser/base/content/tabview/modules/utils.jsm @@ -476,7 +476,7 @@ let Utils = { // Pass as many arguments as you want, it'll print them all. error: function() { var text = this.expandArgumentsForLog(arguments); - Cu.reportError('tabcandy error: ' + text); + Cu.reportError("tabview error: " + text); }, // ---------- @@ -503,7 +503,7 @@ let Utils = { if (typeof(label) == 'undefined') text = 'badly formed assert'; else - text = 'tabcandy assert: ' + label; + text = "tabview assert: " + label; this.trace(text); } @@ -518,7 +518,7 @@ let Utils = { if (typeof(label) == 'undefined') text = 'badly formed assert'; else - text = 'tabcandy assert: ' + label; + text = "tabview assert: " + label; // cut off the first two lines of the stack trace, because they're just this function. text += Error().stack.replace(/^.*?\n.*?\n/, "");