Changeset 28218
- Timestamp:
- 04/25/2014 08:17:59 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/js/customize-models.js
r28217 r28218 114 114 } 115 115 116 if (this.get('imageWidth') <= this.get('themeWidth')) {117 return false;118 }119 120 116 return true; 121 117 } -
trunk/tests/qunit/wp-admin/js/customize-header.js
r28217 r28218 104 104 imageHeight: 8600 105 105 }); 106 107 equal(this.model.shouldBeCropped(), false);108 });109 110 test('should not be cropped when the image width is smaller or equal as theme width', function() {111 this.model.set({112 themeFlexWidth: false,113 themeFlexHeight: false,114 imageWidth: 1000,115 imageHeight: 100116 });117 118 equal(this.model.shouldBeCropped(), false);119 });120 121 test('should not be cropped when the image width is smaller or equal as theme width, theme supports flex height and width', function() {122 this.model.set({123 themeFlexWidth: true,124 themeFlexHeight: true,125 imageWidth: 900,126 imageHeight: 100127 });128 129 106 equal(this.model.shouldBeCropped(), false); 130 107 });
Note: See TracChangeset
for help on using the changeset viewer.