dotledger/dotledger

View on GitHub
app/assets/javascripts/dot_ledger/helpers/loading.js

Summary

Maintainability
A
0 mins
Test Coverage
DotLedger.module('Helpers', function () {
  this.Loading = {
    start: function () {
      DotLedger.container.addClass('loading');
    },

    stop: function () {
      DotLedger.container.removeClass('loading');
    }
  };
});