diff --git a/Makefile b/Makefile index 2d4409f8a..b91952f60 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,6 @@ POST_COMPILER = ${JS_ENGINE} ${BUILD_DIR}/post-compile.js BASE_FILES = ${SRC_DIR}/core.js\ ${SRC_DIR}/callbacks.js\ ${SRC_DIR}/deferred.js\ - ${SRC_DIR}/topic.js\ ${SRC_DIR}/support.js\ ${SRC_DIR}/data.js\ ${SRC_DIR}/queue.js\ diff --git a/src/topic.js b/src/topic.js deleted file mode 100644 index c856db8c2..000000000 --- a/src/topic.js +++ /dev/null @@ -1,45 +0,0 @@ -(function( jQuery ) { - - var topics = {}, - sliceTopic = [].slice; - - jQuery.Topic = function( id ) { - var callbacks, - method, - topic = id && topics[ id ]; - if ( !topic ) { - callbacks = jQuery.Callbacks(); - topic = { - publish: callbacks.fire, - subscribe: callbacks.add, - unsubscribe: callbacks.remove - }; - if ( id ) { - topics[ id ] = topic; - } - } - return topic; - }; - - jQuery.extend({ - subscribe: function( id ) { - var topic = jQuery.Topic( id ), - args = sliceTopic.call( arguments, 1 ); - topic.subscribe.apply( topic, args ); - return { - topic: topic, - args: args - }; - }, - unsubscribe: function( id ) { - var topic = id && id.topic || jQuery.Topic( id ); - topic.unsubscribe.apply( topic, id && id.args || - sliceTopic.call( arguments, 1 ) ); - }, - publish: function( id ) { - var topic = jQuery.Topic( id ); - topic.publish.apply( topic, sliceTopic.call( arguments, 1 ) ); - } - }); - -})( jQuery ); diff --git a/test/data/offset/absolute.html b/test/data/offset/absolute.html index f8bea437b..3868d6eb2 100644 --- a/test/data/offset/absolute.html +++ b/test/data/offset/absolute.html @@ -18,7 +18,6 @@ - diff --git a/test/data/offset/body.html b/test/data/offset/body.html index 9843937ab..1678c2b25 100644 --- a/test/data/offset/body.html +++ b/test/data/offset/body.html @@ -11,7 +11,6 @@ - diff --git a/test/data/offset/fixed.html b/test/data/offset/fixed.html index 43ef4f68e..75e8b1f0a 100644 --- a/test/data/offset/fixed.html +++ b/test/data/offset/fixed.html @@ -15,7 +15,6 @@ - diff --git a/test/data/offset/relative.html b/test/data/offset/relative.html index 933db9b0f..6d0bb8d3e 100644 --- a/test/data/offset/relative.html +++ b/test/data/offset/relative.html @@ -13,7 +13,6 @@ - diff --git a/test/data/offset/scroll.html b/test/data/offset/scroll.html index b17888423..c570e6c1a 100644 --- a/test/data/offset/scroll.html +++ b/test/data/offset/scroll.html @@ -16,7 +16,6 @@ - diff --git a/test/data/offset/static.html b/test/data/offset/static.html index 07e757004..d78a2c4ea 100644 --- a/test/data/offset/static.html +++ b/test/data/offset/static.html @@ -13,7 +13,6 @@ - diff --git a/test/data/offset/table.html b/test/data/offset/table.html index 52e220065..83ef6c475 100644 --- a/test/data/offset/table.html +++ b/test/data/offset/table.html @@ -13,7 +13,6 @@ - diff --git a/test/data/selector.html b/test/data/selector.html index b62e1fa4e..8ffc6c6b3 100644 --- a/test/data/selector.html +++ b/test/data/selector.html @@ -5,6 +5,7 @@