Make WordPress Core

Changeset 24007


Ignore:
Timestamp:
04/17/2013 05:22:14 AM (11 years ago)
Author:
markjaquith
Message:

A little cleanup of post-formats.js

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/js/post-formats.js

    r24006 r24007  
    33(function($) {
    44    var container, mediaFrame, lastMimeType, lastMenu, mediaPreview,
    5         noUIFormats = ['standard', 'chat', 'status', 'aside', 'gallery'],
    6         $container = $( '.post-formats-fields' );
     5        noUIFormats = ['standard', 'chat', 'status', 'aside', 'gallery'],
     6        $container = $( '.post-formats-fields' );
    77
    88    function switchFormatClass( format ) {
     
    1111    }
    1212
    13     function switchFormat ($this) {
     13    function switchFormat($this) {
    1414        var editor, body,
    1515            parent = $this.parent(),
     
    2525        $('#post_format').val(format);
    2626        $('.post-format-change').show().find('span.icon').removeClass(postFormats.currentPostFormat).addClass(format);
    27         // container.addClass('wp-format-set');
    2827
    2928        if ( -1 < $.inArray( format, noUIFormats ) ) {
     
    6362    $(function(){
    6463
    65         $('.post-format-change a').click(function () {
     64        $('.post-format-change a').click(function() {
    6665            $('.post-formats-fields, .post-format-change').slideUp();
    6766            $('.post-format-options').slideDown();
     
    7675
    7776        // Media selection
    78         $('.wp-format-media-select').click(function (event) {
     77        $('.wp-format-media-select').click(function(event) {
    7978            event.preventDefault();
    8079            var $el = $(this), mime,
     
    109108            });
    110109
    111             mediaPreview = function (attachment) {
    112                 var w, h, dimensions = '', url = attachment.url,
    113                     mime = attachment.mime,
    114                     format = attachment.type;
     110            mediaPreview = function(attachment) {
     111                var w, h, dimensions = '', url = attachment.url, mime = attachment.mime, format = attachment.type;
    115112
    116113                if ( 'video' === format ) {
     
    139136
    140137            // When an image is selected, run a callback.
    141             mediaFrame.on( 'select', function () {
     138            mediaFrame.on( 'select', function() {
    142139                // Grab the selected attachment.
    143140                var w = 0, h = 0, html, attachment = mediaFrame.state().get('selection').first().toJSON();
Note: See TracChangeset for help on using the changeset viewer.