Delta Between Two Patch Sets: app/widgets/charm-token.js
Issue 8621043 :
Update the charm details to show changelog detail
Left Patch Set:
Right Patch Set: Update the charm details to show changelog detail
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
[revision details]
app/models/charm.js
app/subapps/browser/templates/browser_charm.handlebars
app/subapps/browser/views/charm.js
app/templates/charm-token.handlebars
app/widgets/charm-token.js
test/data/browsercharm.json
test/test_browser_charm_details.js
test/test_charm_token.js
test/test_model.js
LEFT RIGHT
(no file at all) 1 'use strict'; 1 'use strict';
2 2
3 3
4 /** 4 /**
5 * Provides the Charm Token widget, for display a small unit of charm 5 * Provides the Charm Token widget, for display a small unit of charm
6 * information. 6 * information.
7 * 7 *
8 * @namespace juju 8 * @namespace juju
9 * @module widgets 9 * @module widgets
10 * @submodule browser 10 * @submodule browser
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
76 /** 76 /**
77 * @attribute name 77 * @attribute name
78 * @default '' 78 * @default ''
79 * @type {String} 79 * @type {String}
80 */ 80 */
81 name: { 81 name: {
82 value: '' 82 value: ''
83 }, 83 },
84 84
85 /** 85 /**
86 * @attribute recent_ commits 86 * @attribute recent_ commit_count
87 * @default undefined 87 * @default undefined
88 * @type {Number} 88 * @type {Number}
89 */ 89 */
90 recent_ commits : {}, 90 recent_ commit_count : {},
91 91
92 /** 92 /**
93 * @attribute recent_ downloads 93 * @attribute recent_ download_count
94 * @default undefined 94 * @default undefined
95 * @type {Number} 95 * @type {Number}
96 */ 96 */
97 recent_ downloads : {} 97 recent_ download_count : {}
98 } 98 }
99 }); 99 });
100 100
101 }, '0.1.0', { 101 }, '0.1.0', {
102 requires: [ 102 requires: [
103 'base', 103 'base',
104 'event-tracker', 104 'event-tracker',
105 'handlebars', 105 'handlebars',
106 'juju-templates', 106 'juju-templates',
107 'juju-view-utils', 107 'juju-view-utils',
108 'widget', 108 'widget',
109 'widget-child' 109 'widget-child'
110 ] 110 ]
111 }); 111 });
LEFT RIGHT