Created
April 23, 2012 11:08
Revisions
-
adtaylor revised this gist
Apr 23, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -44,7 +44,7 @@ $.fn.pluginName = ( option ) -> this.each -> $this = $(@) data = $this.data 'pluginName' if !data then $this.data 'pluginName', (data = new PluginName @) if typeof option is 'string' then data[option].call $this $.fn.pluginName.Constructor = PluginName -
adtaylor renamed this gist
Apr 23, 2012 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
adtaylor revised this gist
Apr 23, 2012 . 1 changed file with 24 additions and 26 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -22,39 +22,37 @@ # PLUGINNAME # pluginName $ = window.jQuery "use strict" # PLUGINNAME CLASS DEFINITION # ========================= class PluginName constructor: ( element ) -> $el = $(element) _constructor: PluginName method : -> alert "I am a method" # PLUGINNAME PLUGIN DEFINITION # ========================== $.fn.pluginName = ( option ) -> this.each -> $this = $(@) data = $this.data 'pluginName' if !data then $this.data 'pluginName', (data = new Dropdown @) if typeof option is 'string' then data[option].call $this $.fn.pluginName.Constructor = PluginName # DATA API # =================================== $ -> $('body').on 'click.pluginName.data-api', '[data-pluginNameAction^=Action]', ( e ) -> $(e.target).pluginName() -
adtaylor created this gist
Apr 23, 2012 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,60 @@ # ============================================================ # PluginName v0.0.0 # http://URL # ============================================================ # Copyright 2012 The Beans Group # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # Find and replace on: # PluginName # PLUGINNAME # pluginName !( $ )-> "use strict" # PLUGINNAME CLASS DEFINITION # ========================= class PluginName constructor: ( element ) -> var $el = $(element) _constructor: PluginName method : -> alert "I am a method" # PLUGINNAME PLUGIN DEFINITION # ========================== $.fn.pluginName = ( option ) -> this.each -> $this = $(@) data = $this.data 'pluginName' if !data then $this.data 'pluginName', (data = new Dropdown @) if typeof option is 'string' then data[option].call $this $.fn.pluginName.Constructor = PluginName # DATA API # =================================== $ -> $('body').on('click.pluginName.data-api', '[data-pluginNameAction^=Action]', function ( e ) { $(e.target).pluginName() }( window.jQuery )