Skip to content

Commit

Permalink
Added pull request Freeboard#142
Browse files Browse the repository at this point in the history
  • Loading branch information
joed74 committed Aug 20, 2022
1 parent e044f15 commit 1ef6ccc
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/freeboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ function FreeboardModel(datasourcePlugins, widgetPlugins, freeboardUI)
}
}

this.saveDashboardClicked = function(){
this.saveDashboardClicked = function(_thisref, event){
var target = $(event.currentTarget);
var siblingsShown = target.data('siblings-shown') || false;
if(!siblingsShown){
Expand Down
2 changes: 1 addition & 1 deletion js/freeboard.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/freeboard_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ function FreeboardModel(datasourcePlugins, widgetPlugins, freeboardUI)
}
}

this.saveDashboardClicked = function(){
this.saveDashboardClicked = function(_thisref, event){
var target = $(event.currentTarget);
var siblingsShown = target.data('siblings-shown') || false;
if(!siblingsShown){
Expand Down
2 changes: 1 addition & 1 deletion js/freeboard_plugins.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/js/freeboard/FreeboardModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ function FreeboardModel(datasourcePlugins, widgetPlugins, freeboardUI)
}
}

this.saveDashboardClicked = function(){
this.saveDashboardClicked = function(_thisref, event){
var target = $(event.currentTarget);
var siblingsShown = target.data('siblings-shown') || false;
if(!siblingsShown){
Expand Down
1 change: 0 additions & 1 deletion lib/js/freeboard/PaneModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ function PaneModel(theFreeboardModel, widgetPlugins) {

this.processSizeChange = function()
{
console.log("processSizeChange");
// Give the animation a moment to complete. Really hacky.
// TODO: Make less hacky. Also, doesn't work when screen resizes.
setTimeout(function(){
Expand Down

0 comments on commit 1ef6ccc

Please sign in to comment.