-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding files makes easier to have working addons - thanks Spuds!
- Loading branch information
1 parent
f2ddc80
commit 21e5109
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification"> | ||
|
||
<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/"> | ||
<id>emanuele:tabbed_smileys</id> | ||
<license><!-- | ||
/** | ||
* Tabbed Smileys (TSm) | ||
* | ||
* @package TSm | ||
* @author emanuele | ||
* @license BSD http://opensource.org/licenses/BSD-3-Clause | ||
* | ||
* @version 0.1.0 | ||
*/ | ||
--></license> | ||
<name>Tabbed smileys</name> | ||
<version>0.1.0</version> | ||
|
||
<file name="THEMEDIR/GenericControls.template.php"> | ||
<operation> | ||
<search position="before"><![CDATA[bbcode, splittag]]></search> | ||
<add><![CDATA[, tabbedemotes]]></add> | ||
</operation> | ||
</file> | ||
|
||
<file name="SUBSDIR/Editor.subs.php"> | ||
<operation><!-- 1 --> | ||
<search position="replace"><![CDATA['dropAttachments.js'));]]></search> | ||
<add><![CDATA['dropAttachments.js', 'tabbedSmiley.js')); | ||
loadCSSFile('tabbedSmiley.css'); | ||
]]></add> | ||
</operation> | ||
</file> | ||
|
||
</modification> |