Skip to content
Snippets Groups Projects
Commit 0f273bc0 authored by Jack Reed's avatar Jack Reed Committed by aeschylus
Browse files

cleans up statusBar to meet style standards (an example)

parent 28cf41b3
No related branches found
No related tags found
No related merge requests found
......@@ -5,5 +5,13 @@
"jQuery": true
},
"rules": {
"no-param-reassign": [
2, {
"props": true,
"ignorePropertyModificationsFor": [
"$"
]
}
]
}
}
(function ($) {
$.WidgetStatusBar = function(options) {
$.WidgetStatusBar = function WidgetStatusBar(options) {
jQuery.extend(true, this, {
}, $.DEFAULT_SETTINGS, options);
};
$.WidgetStatusBar.prototype = {
};
}(Mirador));
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment