This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../paper-radio-group/paper-radio-group.html"> | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<link rel="import" href="../paper-checkbox/paper-checkbox.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../paper-icon-button/paper-icon-button.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A test class file. | |
* @class TestClass | |
* @constructor | |
*/ | |
function TestClass () { | |
} | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Y.Namespace("fooNS"); | |
/** | |
* A test module with some classes attached to it. | |
* @module fooModule | |
*/ | |
/** | |
* Global configuration for the fooModule | |
* @property config | |
* @for fooModule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.noDescription').live('click', function() { | |
var form = $('<div class="Form" id="editDescription"></div>'); | |
var textarea = $('<textarea></textarea>'); | |
var charCount = $('<div class="CharacterCount"></div>'); | |
var button = $('<a class="Button11 Button RedButton editDescription" href="#"><strong>Save Description</strong><span></span></a>'); | |
trackGAEvent('about_field', 'expanded', 'profile'); | |
form.append(textarea).append(button).append(charCount); | |
$('.noDescription').replaceWith(form); |