mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 12:29:46 +08:00
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
/**
|
|
This view handles rendering of a link to share something on a
|
|
third-party site.
|
|
|
|
@class ShareLinkView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.ShareLinkView = Discourse.View.extend({
|
|
templateName: 'share_link',
|
|
tagName: 'div',
|
|
classNameBindings: [':social-link']
|
|
}); |