diff options
author | Marvin Borner | 2018-05-24 00:31:19 +0200 |
---|---|---|
committer | Marvin Borner | 2018-05-24 00:31:19 +0200 |
commit | 85211481260c076ad5e2889b66465495c33429ef (patch) | |
tree | b33c63888f81ff878c514c7c544e3afcf4cfbfd1 /main/app/sprinkles/core/assets/userfrosting | |
parent | b66a61addb6c8e66cb26fcf74b532d68891267e4 (diff) |
Many fixes, began user feed generator
Diffstat (limited to 'main/app/sprinkles/core/assets/userfrosting')
5 files changed, 6 insertions, 7 deletions
diff --git a/main/app/sprinkles/core/assets/userfrosting/css/AdminLTE.css b/main/app/sprinkles/core/assets/userfrosting/css/AdminLTE.css index 38fe523..dfe6b4b 100644 --- a/main/app/sprinkles/core/assets/userfrosting/css/AdminLTE.css +++ b/main/app/sprinkles/core/assets/userfrosting/css/AdminLTE.css @@ -2233,7 +2233,7 @@ a:focus { font-size: 12px; } -/* Widget: TODO LIST */ +/* Widget:*/ .todo-list { margin: 0; padding: 0; diff --git a/main/app/sprinkles/core/assets/userfrosting/js/AdminLTE.js b/main/app/sprinkles/core/assets/userfrosting/js/AdminLTE.js index 8f31ca5..0bdfc9d 100644 --- a/main/app/sprinkles/core/assets/userfrosting/js/AdminLTE.js +++ b/main/app/sprinkles/core/assets/userfrosting/js/AdminLTE.js @@ -709,12 +709,11 @@ function _init() { })(jQuery); /* - * TODO LIST CUSTOM PLUGIN + LIST CUSTOM PLUGIN * ----------------------- * This plugin depends on iCheck plugin for checkbox and radio inputs * * @type plugin - * @usage $("#todo-widget").todolist( options ); */ (function ($) { diff --git a/main/app/sprinkles/core/assets/userfrosting/js/uf-form.js b/main/app/sprinkles/core/assets/userfrosting/js/uf-form.js index 3724ef7..06fcc43 100644 --- a/main/app/sprinkles/core/assets/userfrosting/js/uf-form.js +++ b/main/app/sprinkles/core/assets/userfrosting/js/uf-form.js @@ -29,7 +29,7 @@ * UserFrosting https://www.userfrosting.com * @author Alexander Weissman <https://alexanderweissman.com> * - * @todo Implement proper fallback for when `set` function isn't supported by FormData. + * Implement proper fallback for when `set` function isn't supported by FormData. */ ;(function ($, window, document, undefined) { 'use strict'; @@ -166,7 +166,7 @@ console.log('Error (' + jqXHR.status + '): ' + jqXHR.responseText); } // Display errors on failure - // TODO: ufAlerts widget should have a 'destroy' method + // ufAlerts widget should have a 'destroy' method if (!this.settings.msgTarget.data('ufAlerts')) { this.settings.msgTarget.ufAlerts(); } else { diff --git a/main/app/sprinkles/core/assets/userfrosting/js/uf-modal.js b/main/app/sprinkles/core/assets/userfrosting/js/uf-modal.js index 588c40b..221a2fc 100644 --- a/main/app/sprinkles/core/assets/userfrosting/js/uf-modal.js +++ b/main/app/sprinkles/core/assets/userfrosting/js/uf-modal.js @@ -82,7 +82,7 @@ console.log("Error (" + data.status + "): " + data.responseText); } // Display errors on failure - // TODO: ufAlerts widget should have a 'destroy' method + // ufAlerts widget should have a 'destroy' method if (!base.options.msgTarget.data('ufAlerts')) { base.options.msgTarget.ufAlerts(); } else { diff --git a/main/app/sprinkles/core/assets/userfrosting/js/uf-table.js b/main/app/sprinkles/core/assets/userfrosting/js/uf-table.js index 692dccc..8981bb3 100644 --- a/main/app/sprinkles/core/assets/userfrosting/js/uf-table.js +++ b/main/app/sprinkles/core/assets/userfrosting/js/uf-table.js @@ -551,7 +551,7 @@ console.log('Error (' + jqXHR.status + '): ' + jqXHR.responseText); } // Display errors on failure - // TODO: ufAlerts widget should have a 'destroy' method + // ufAlerts widget should have a 'destroy' method if (!this.settings.msgTarget.data('ufAlerts')) { this.settings.msgTarget.ufAlerts(); } else { |