mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
init -> _init
This commit is contained in:
parent
4f55751d8a
commit
69bbd38444
@ -15,7 +15,7 @@
|
|||||||
var counter = 0;
|
var counter = 0;
|
||||||
|
|
||||||
$.widget("ui.magnifier", {
|
$.widget("ui.magnifier", {
|
||||||
init: function() {
|
_init: function() {
|
||||||
var self = this,
|
var self = this,
|
||||||
o = this.options;
|
o = this.options;
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
(function($) {
|
(function($) {
|
||||||
|
|
||||||
$.widget("ui.progressbar", {
|
$.widget("ui.progressbar", {
|
||||||
init: function() {
|
_init: function() {
|
||||||
|
|
||||||
$.extend(this.options, {
|
$.extend(this.options, {
|
||||||
_interval: this.options.interval
|
_interval: this.options.interval
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
(function($) {
|
(function($) {
|
||||||
|
|
||||||
$.widget("ui.spinner", {
|
$.widget("ui.spinner", {
|
||||||
init: function() {
|
_init: function() {
|
||||||
|
|
||||||
//Initialize needed constants
|
//Initialize needed constants
|
||||||
var self = this;
|
var self = this;
|
||||||
|
@ -13,13 +13,13 @@
|
|||||||
(function($) {
|
(function($) {
|
||||||
|
|
||||||
$.widget("ui.tabs", {
|
$.widget("ui.tabs", {
|
||||||
init: function() {
|
_init: function() {
|
||||||
this.options.event += '.tabs'; // namespace event
|
this.options.event += '.tabs'; // namespace event
|
||||||
|
|
||||||
// create tabs
|
// create tabs
|
||||||
this._tabify(true);
|
this._tabify(true);
|
||||||
},
|
},
|
||||||
setData: function(key, value) {
|
_setData: function(key, value) {
|
||||||
if ((/^selected/).test(key))
|
if ((/^selected/).test(key))
|
||||||
this.select(value);
|
this.select(value);
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user