sproutcore
Version:
SproutCore buildtools: Node.js buildtools for SproutCore, written in SproutCore
11 lines (10 loc) • 377 B
JavaScript
/*globals BT*/
BT.FrameworkStylesheetsController = SC.ArrayController.extend({
framework: null, // have a link to the framework
orderBy: 'path ASC',
filesHaveChanged: function () {
BT.Logger.trace("stylesheet file has changed...");
//return true;
return this.get('propertyRevision'); // makes sure it is always different
}.property('@each.rawContent')
});