fixed missing closing bracket and removed debugging log
This commit is contained in:
parent
6cd5550721
commit
ac10de5090
|
@ -54,9 +54,8 @@ var AIRTIME = (function (AIRTIME) {
|
||||||
* Generate a smartblock and playlist for this smartblock.
|
* Generate a smartblock and playlist for this smartblock.
|
||||||
*/
|
*/
|
||||||
$scope.createSmartblock = function () {
|
$scope.createSmartblock = function () {
|
||||||
console.log($scope.podcast.id);
|
|
||||||
$.post(endpoint + "smartblock", {csrf_token: $("#csrf").val(), id: $scope.podcast.id}, callback);
|
$.post(endpoint + "smartblock", {csrf_token: $("#csrf").val(), id: $scope.podcast.id}, callback);
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
* Close the tab and discard any changes made to the podcast data.
|
* Close the tab and discard any changes made to the podcast data.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue