Changeset 27693
- Timestamp:
- 03/24/2014 11:01:15 PM (11 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/js/customize-widgets.js
r27654 r27693 18 18 remove_btn_label: '', 19 19 remove_btn_tooltip: '', 20 error: '' ,20 error: '' 21 21 }, 22 22 available_widgets: [], // available widgets for instantiating -
trunk/src/wp-includes/js/customize-views.js
r27688 r27693 137 137 var c = this.model.get('collection'); 138 138 return _.extend(this.model.toJSON(), { 139 type: c.type ,139 type: c.type 140 140 }); 141 141 }, -
trunk/src/wp-includes/js/plupload/handlers.js
r27662 r27693 403 403 var isIE = navigator.userAgent.indexOf('Trident/') != -1 || navigator.userAgent.indexOf('MSIE ') != -1; 404 404 405 406 407 405 // Make sure flash sends cookies (seems in IE it does whitout switching to urlstream mode) 406 if ( ! isIE && 'flash' === plupload.predictRuntime( wpUploaderInit ) && 407 ( ! wpUploaderInit.required_features || ! wpUploaderInit.required_features.hasOwnProperty( 'send_binary_string' ) ) ) { 408 408 409 409 wpUploaderInit.required_features = wpUploaderInit.required_features || {}; -
trunk/src/wp-includes/js/plupload/wp-plupload.js
r27681 r27693 87 87 } 88 88 89 90 91 89 // Make sure flash sends cookies (seems in IE it does without switching to urlstream mode) 90 if ( ! isIE && 'flash' === plupload.predictRuntime( this.plupload ) && 91 ( ! this.plupload.required_features || ! this.plupload.required_features.hasOwnProperty( 'send_binary_string' ) ) ) { 92 92 93 93 this.plupload.required_features = this.plupload.required_features || {}; -
trunk/src/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js
r27668 r27693 193 193 html = createImageAndLink( imageData, 'html' ); 194 194 195 width = parseInt( imageData.width );195 width = parseInt( imageData.width, 10 ); 196 196 197 197 if ( ! editor.getParam( 'wpeditimage_html5_captions' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.