aboutsummaryrefslogtreecommitdiffstats
path: root/public/javascripts/jquery.flot.axislabels.js
diff options
context:
space:
mode:
authorMark Longair <mhl@pobox.com>2013-11-15 11:39:12 +0000
committerMark Longair <mhl@pobox.com>2013-11-15 11:39:12 +0000
commit64618741c17760fcb59647d74d1ccaff56160b15 (patch)
treed84f1f035b136180f0bdacb22895fbb0f1abf2c1 /public/javascripts/jquery.flot.axislabels.js
parent96b3b5adbdafb25e5ab6ca94b89d6682a2e8f0e4 (diff)
parentcda26c36f309cdd8e8bbab9186f6cc0d4876e6c9 (diff)
Merge branch 'release/0.15' into wdtk
Conflicts: lib/tasks/stats.rake
Diffstat (limited to 'public/javascripts/jquery.flot.axislabels.js')
-rw-r--r--public/javascripts/jquery.flot.axislabels.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/javascripts/jquery.flot.axislabels.js b/public/javascripts/jquery.flot.axislabels.js
index d75b03ba9..c6f77aad4 100644
--- a/public/javascripts/jquery.flot.axislabels.js
+++ b/public/javascripts/jquery.flot.axislabels.js
@@ -61,7 +61,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
this.height = 0;
}
- AxisLabel.prototype.delete = function() {
+ AxisLabel.prototype['delete'] = function() {
};
@@ -144,7 +144,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
}
};
- HtmlAxisLabel.prototype.delete = function() {
+ HtmlAxisLabel.prototype['delete'] = function() {
if (this.elem) {
this.elem.remove();
}
@@ -357,7 +357,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
axisLabels[axisName].width;
opts.labelHeight = axis.labelHeight;
opts.labelWidth = axis.labelWidth;
- axisLabels[axisName].delete();
+ axisLabels[axisName]['delete']();
delete axisLabels[axisName];
}