2016-01-29 17:31:07 +01:00
|
|
|
/*
|
|
|
|
|
* show.js
|
2016-04-01 16:46:11 +02:00
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
2016-01-29 17:31:07 +01:00
|
|
|
*
|
2016-12-23 07:02:45 +01:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
|
*
|
|
|
|
|
* See the LICENSE file for details.
|
2016-01-29 17:31:07 +01:00
|
|
|
*/
|
2017-01-02 10:34:01 +01:00
|
|
|
/** global: piggyBankID, lineChart */
|
2016-01-29 17:31:07 +01:00
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
|
"use strict";
|
|
|
|
|
if (typeof(lineChart) === 'function' && typeof(piggyBankID) !== 'undefined') {
|
|
|
|
|
lineChart('chart/piggy-bank/' + piggyBankID, 'piggy-bank-history');
|
|
|
|
|
}
|
|
|
|
|
});
|